1.0.0 for iOS

This commit is contained in:
2025-12-07 23:58:13 -07:00
parent ff6009f237
commit 766f72dcfa
10 changed files with 66 additions and 17 deletions

View File

@@ -9,6 +9,7 @@ import SwiftUI
struct SettingsView: View {
@AppStorage("accentColorName") private var accentColorName = "Blue"
@AppStorage("hapticFeedbackEnabled") private var hapticFeedbackEnabled = true
private let colors: [(name: String, color: Color)] = [
("Blue", .blue),
@@ -44,6 +45,10 @@ struct SettingsView: View {
var body: some View {
NavigationStack {
Form {
Section("General") {
Toggle("Haptic Feedback", isOn: $hapticFeedbackEnabled)
}
Section("Appearance") {
VStack(alignment: .leading, spacing: 16) {
Text("ACCENT COLOR")