70 lines
1.5 KiB
Swift
70 lines
1.5 KiB
Swift
//
|
|
// KnownIssues.swift
|
|
// Splits
|
|
//
|
|
// Created by Isaac Greene on 6/3/22.
|
|
//
|
|
|
|
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} Implemented an easy way to dismiss the keyboard in the main view of Calculator (it only took 2 1/2 months)\n\u{2022} Opening the contacts tab no longer causes the app to crash (RC 2)")
|
|
}
|
|
.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)
|
|
}
|
|
.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)
|
|
}
|
|
.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")
|
|
}
|
|
.padding(30)
|
|
}
|
|
.navigationTitle("Low Priority")
|
|
}
|
|
}
|
|
|
|
struct KnownIssues_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
HighPriority()
|
|
}
|
|
}
|