33 lines
844 B
Swift
33 lines
844 B
Swift
//
|
|
// ChangeLogView.swift
|
|
// Splits
|
|
//
|
|
// Created by Isaac Greene on 2022-04-03.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ChangeLog: View {
|
|
var body: some View {
|
|
List {
|
|
Section(header: Text("2023")) {
|
|
NavigationLink("June", destination: June2023())
|
|
}
|
|
Section(header: Text("2022")) {
|
|
NavigationLink("September", destination: September2022())
|
|
NavigationLink("July", destination: July2022())
|
|
NavigationLink("June", destination: June2022())
|
|
NavigationLink("May", destination: May2022())
|
|
NavigationLink("April", destination: April2022())
|
|
NavigationLink("March", destination: March2022())
|
|
}
|
|
}
|
|
.listStyle(.insetGrouped)
|
|
.navigationTitle("Change Log")
|
|
}
|
|
}
|
|
struct ChangeLog_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ChangeLog()
|
|
}
|
|
}
|