Added more robust app documentation. Started working on an issue where entering zero as the first number in the Distance text field causes the app to crash.

This commit is contained in:
Isaac Greene 2022-06-14 22:10:13 -04:00
parent 7d6643112d
commit b6677c2053
7 changed files with 108 additions and 41 deletions

View file

@ -25,10 +25,7 @@ struct HighPriority: View {
var body: some View {
ScrollView {
VStack {
Image(systemName: "checkmark.shield.fill")
.resizable()
.aspectRatio(contentMode: .fit)
.frame(width: 70)
Text("\u{2022} Putting a zero as the first number in the Distance text field causes the app to crash\n\t\u{2022} **Workaround:** Just don't put zero first. You can still use decimals (like .7km and .24mi)")
}
.padding(30)
}
@ -55,7 +52,7 @@ 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")
Text("\u{2022} Space between the equation and explanation in the \"Help\" tab is too large\n\u{2022} App has no custom icon\n\u{2022} In some circumstances, the pace will show xx:60/unit as a pace, when the 60 should equal one minute")
}
.padding(30)
}