Fixed issue where entering a distance of less than .1 crashed the app. Formatted the primary distance to three decimal paces. Added a "Clear" button which sets all text fields to "". Moved app back to Release Candidate.
This commit is contained in:
parent
7aa899ca7d
commit
af513b8c05
4 changed files with 155 additions and 118 deletions
|
|
@ -13,7 +13,7 @@ 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)\n\u{2022} Opening the contacts tab no longer causes the app to crash (RC 2)\n\u{2022} Typing zero as the first number for the distance no longer causes the app to crash")
|
||||
Text("\u{2022} Opening the contacts tab no longer causes the app to crash\n\u{2022} Typing zero as the first number for the distance no longer causes the app to crash\n\u{2022} Having a distance of less than .1 no longer crashes the app")
|
||||
}
|
||||
.padding(30)
|
||||
}
|
||||
|
|
@ -25,9 +25,13 @@ struct HighPriority: View {
|
|||
var body: some View {
|
||||
ScrollView {
|
||||
VStack {
|
||||
Text("\u{2022} Entering a distance of less than 0.1 per unit causes the app to crash\n\t**Workaround:** RIP to you if this applies")
|
||||
Image(systemName: "checkmark.shield.fill")
|
||||
.resizable()
|
||||
.aspectRatio(contentMode: .fit)
|
||||
.frame(width: 70)
|
||||
}
|
||||
.padding(30)
|
||||
.frame(maxWidth: .infinity)
|
||||
}
|
||||
.navigationTitle("High Priority")
|
||||
}
|
||||
|
|
@ -43,6 +47,7 @@ struct MediumPriority: View {
|
|||
.frame(width: 70)
|
||||
}
|
||||
.padding(30)
|
||||
.frame(maxWidth: .infinity)
|
||||
}
|
||||
.navigationTitle("Medium Priority")
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue