65 lines
1.4 KiB
Swift
65 lines
1.4 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)")
|
|
}
|
|
.padding(30)
|
|
}
|
|
.navigationTitle("Recently Resolved")
|
|
}
|
|
}
|
|
|
|
struct HighPriority: View {
|
|
var body: some View {
|
|
ScrollView {
|
|
VStack(alignment: .leading) {
|
|
Text("Tapping on the Contacts tab after entering correct login details causes the app to crash")
|
|
}
|
|
.padding(30)
|
|
}
|
|
.navigationTitle("High Priority")
|
|
}
|
|
}
|
|
|
|
struct MediumPriority: View {
|
|
var body: some View {
|
|
ScrollView {
|
|
VStack(alignment: .leading) {
|
|
Text("Wow. Such Empty.")
|
|
.italic()
|
|
}
|
|
.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()
|
|
}
|
|
}
|