Did some major reformatting of the Change Log tab (now Docs) and will hopefully get to adding some more actual features soon

This commit is contained in:
Isaac Greene 2022-06-04 23:05:37 -04:00
parent 5578d86ccf
commit 7b421a0a73
9 changed files with 294 additions and 45 deletions

View file

@ -9,16 +9,23 @@ import SwiftUI
struct ChangeLog: View {
var body: some View {
NavigationView {
List {
Section(header: Text("2022")) {
NavigationLink("May", destination: May2022())
NavigationLink("April", destination: April2022())
}
}
.listStyle(.insetGrouped)
.navigationTitle("Change log")
HStack {
VStack (alignment: .leading) {
Text("Change Log")
.font(.largeTitle)
.bold()
}
Spacer()
}
.padding()
List {
Section(header: Text("2022")) {
NavigationLink("June", destination: June2022())
NavigationLink("May", destination: May2022())
NavigationLink("April", destination: April2022())
}
}
.listStyle(.insetGrouped)
}
}
struct ChangeLog_Previews: PreviewProvider {