// // ChangeLogView.swift // Splits // // Created by Isaac Greene on 4/3/22. // import SwiftUI struct ChangeLog: View { var body: some View { 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 { static var previews: some View { ChangeLog() } }