splits/Splits/ChangeLogView.swift
2022-06-17 16:38:15 -04:00

33 lines
774 B
Swift

//
// ChangeLogView.swift
// Splits
//
// Created by Isaac Greene on 4/3/22.
//
import SwiftUI
// this file will not have comments.
// this code is considered simple enough to be
// human-readable without aid, as long as
// the reader has a basic understanding of
// Swift and/or 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())
}
}
.listStyle(.insetGrouped)
.navigationTitle("Change Log")
}
}
struct ChangeLog_Previews: PreviewProvider {
static var previews: some View {
ChangeLog()
}
}