Made small improvements like dismissing the keyboard. Tapping the Contacts tab causes the app to crash.

This commit is contained in:
Isaac Greene 2022-06-10 23:55:34 -04:00
parent b77ef882e8
commit 5c4d4f8059
21 changed files with 174 additions and 36 deletions

View file

@ -17,11 +17,14 @@ struct June2022: View {
VStack (alignment: .leading) {
Text("2022-06-10")
.font(.title2)
Text("Version 1.0.0 (LVSXT10a)\n")
Text("Version Release Candidate (LVSXT10a)\n")
.font(.footnote)
Text("\u{2022} Got the conversion of paces to work, so a 5:00/km pace will also show as 8:03/mi\n\u{2022} This app is now considered \"Finished\" and will transition to Version Numbers")
Text("\u{2022} Got the conversion of paces to work, so a 5:00/km pace will also show as 8:03/mi\n\u{2022} This app is now considered \"Finished\" and will transition to Version Numbers\n\u{2022} FINALLY MADE A WAY TO DISMISS THE KEYBOARD\n\t\u{2022} (as with most of the other solutions I've had to use for other problems in this app, the fix was remarkably easy)\n\u{2022} Made several small quality-of-life improvements")
}
Spacer()
}
.padding(30)
//2022-06-09
HStack {
VStack (alignment: .leading) {
@ -97,6 +100,8 @@ struct June2022: View {
}
.padding(30)
}
.navigationTitle("June 2022 Log")
.navigationBarTitleDisplayMode(.inline)
}
}
@ -129,6 +134,8 @@ struct May2022: View {
}
.padding(30)
}
.navigationTitle("May 2022 Log")
.navigationBarTitleDisplayMode(.inline)
}
}
@ -226,6 +233,8 @@ struct April2022: View {
}
.padding(30)
}
.navigationTitle("April 2022 Log")
.navigationBarTitleDisplayMode(.inline)
}
}
@ -258,5 +267,7 @@ struct March2022: View {
}
.padding(30)
}
.navigationTitle("March 2022 Log")
.navigationBarTitleDisplayMode(.inline)
}
}