Added km/hr and mi/hr. Did some formatting stuff.

This commit is contained in:
Isaac Greene 2022-06-17 16:38:15 -04:00
parent af513b8c05
commit acc9f86315
5 changed files with 76 additions and 26 deletions

View file

@ -15,15 +15,15 @@ import SwiftUI
struct ChangeLog: View {
var body: some View {
List {
Section(header: Text("2022")) {
NavigationLink("June", destination: June2022())
NavigationLink("May", destination: May2022())
NavigationLink("April", destination: April2022())
NavigationLink("March", destination: March2022())
}
Section(header: Text("2022")) {
NavigationLink("June", destination: June2022())
NavigationLink("May", destination: May2022())
NavigationLink("April", destination: April2022())
NavigationLink("March", destination: March2022())
}
.listStyle(.insetGrouped)
.navigationTitle("Change Log")
}
.listStyle(.insetGrouped)
.navigationTitle("Change Log")
}
}
struct ChangeLog_Previews: PreviewProvider {