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

44
Splits/DocsView.swift Normal file
View file

@ -0,0 +1,44 @@
//
// DocsView.swift
// Splits
//
// Created by Isaac Greene on 6/3/22.
//
import SwiftUI
struct DocsView: View {
var body: some View {
NavigationView {
List {
NavigationLink("Help", destination: HelpView())
NavigationLink("Change Log", destination: ChangeLog())
Section(header: Text("Features")) {
NavigationLink("New", destination: NewFeatures())
NavigationLink("In Progress", destination: InProgressFeatures())
NavigationLink("Deprecated", destination: DeprecatedFeatures())
}
Section(header: Text("Known Issues")) {
NavigationLink("Recently Resolved", destination: RecentlyResolved())
NavigationLink("High Priority", destination: HighPriority())
NavigationLink("Medium Priority", destination: MediumPriority())
NavigationLink("Low Priority", destination: LowPriority())
}
Section(header: Text("App Information")) {
Text("Version: Prerelease LVSXT10d.2")
Text("Release date: 2022-06-04")
Text("Start date: 2022-03-25")
Text("App files: 9")
}
}
.navigationTitle("Docs")
}
}
}
struct DocsView_Previews: PreviewProvider {
static var previews: some View {
DocsView()
}
}