72 lines
1.7 KiB
Swift
72 lines
1.7 KiB
Swift
//
|
|
// KnownIssues.swift
|
|
// Splits
|
|
//
|
|
// Created by Isaac Greene on 2022-06-03.
|
|
//
|
|
|
|
import SwiftUI
|
|
// this file will not have comments.
|
|
// it is considered self-explanatory and best viewed in-app
|
|
|
|
struct RecentlyResolved: View {
|
|
var body: some View {
|
|
ScrollView {
|
|
VStack(alignment: .leading) {
|
|
Text("\u{2022} Opening the contacts tab no longer causes the app to crash\n\u{2022} Typing zero as the first number for the distance no longer causes the app to crash\n\u{2022} Having a distance of less than .1 no longer causes the app to crash")
|
|
}
|
|
.padding(30)
|
|
}
|
|
.navigationTitle("Recently Resolved")
|
|
}
|
|
}
|
|
|
|
struct HighPriority: View {
|
|
var body: some View {
|
|
ScrollView {
|
|
VStack {
|
|
Image(systemName: "checkmark.shield.fill")
|
|
.resizable()
|
|
.aspectRatio(contentMode: .fit)
|
|
.frame(width: 70)
|
|
}
|
|
.padding(30)
|
|
.frame(maxWidth: .infinity)
|
|
}
|
|
.navigationTitle("High Priority")
|
|
}
|
|
}
|
|
|
|
struct MediumPriority: View {
|
|
var body: some View {
|
|
ScrollView {
|
|
VStack {
|
|
Image(systemName: "checkmark.shield.fill")
|
|
.resizable()
|
|
.aspectRatio(contentMode: .fit)
|
|
.frame(width: 70)
|
|
}
|
|
.padding(30)
|
|
.frame(maxWidth: .infinity)
|
|
}
|
|
.navigationTitle("Medium Priority")
|
|
}
|
|
}
|
|
|
|
struct LowPriority: View {
|
|
var body: some View {
|
|
ScrollView {
|
|
VStack(alignment: .leading) {
|
|
Text("\u{2022} Space between the equation and explanation in the \"Help\" tab is too large\n\u{2022} App has no custom icon\n\u{2022} In some circumstances, the pace will show xx:60/unit as a pace, when the 60 should equal one minute")
|
|
}
|
|
.padding(30)
|
|
}
|
|
.navigationTitle("Low Priority")
|
|
}
|
|
}
|
|
|
|
struct KnownIssues_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
HighPriority()
|
|
}
|
|
}
|