// // SettingsView.swift // Workouts // // Copyright 2025 Rouslan Zenetl. All Rights Reserved. // import SwiftUI import IndieAbout struct SettingsView: View { var body: some View { NavigationStack { Form { Section(header: Text("Account")) { Text("Settings coming soon") .foregroundColor(.secondary) } Section { IndieAbout(configuration: AppInfoConfiguration( documents: [ .custom(title: "Changelog", filename: "CHANGELOG", extension: "md"), .license(), .acknowledgements() ] )) } } .navigationTitle("Settings") } } } #Preview { SettingsView() }