Made small improvements like dismissing the keyboard. Tapping the Contacts tab causes the app to crash.
This commit is contained in:
parent
b77ef882e8
commit
5c4d4f8059
21 changed files with 174 additions and 36 deletions
|
|
@ -12,61 +12,49 @@ import SwiftUI
|
|||
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")
|
||||
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 {
|
||||
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")
|
||||
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 {
|
||||
Text("Medium Priority Issues")
|
||||
.font(.largeTitle)
|
||||
.bold()
|
||||
.padding(.top, 40)
|
||||
VStack(alignment: .leading) {
|
||||
Text("Wow. Such Empty.")
|
||||
.italic()
|
||||
}
|
||||
.padding(30)
|
||||
}
|
||||
.navigationTitle("Medium Priority")
|
||||
}
|
||||
}
|
||||
|
||||
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")
|
||||
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")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue