44 lines
1.2 KiB
Swift
44 lines
1.2 KiB
Swift
//
|
|
// 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()
|
|
}
|
|
}
|