// // 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 { Text("Recently Resolved Issues") .font(.largeTitle) .bold() .padding(.top, 40) VStack(alignment: .leading) { Text("\n\u{2022} None since the addition of this tab") } .padding(30) } } } struct HighPriority: View { var body: some View { ScrollView { Text("High Priority Issues") .font(.largeTitle) .bold() .padding(.top, 40) VStack(alignment: .leading) { Text("\n\u{2022} You can not dismiss the keyboard on iPhone\n\t\u{2022} This hides the tab bar at the bottom so you can't navigate the app after bringing it up") } .padding(30) } } } struct MediumPriority: View { var body: some View { ScrollView { Text("Medium Priority Issues") .font(.largeTitle) .bold() .padding(.top, 40) VStack(alignment: .leading) { Text("Wow. Such Empty.") .italic() } .padding(30) } } } struct LowPriority: View { var body: some View { ScrollView { Text("Low Priority Issues") .font(.largeTitle) .bold() .padding(.top, 40) VStack(alignment: .leading) { Text("\n\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) } } } struct KnownIssues_Previews: PreviewProvider { static var previews: some View { HighPriority() } }