1.0.0 for iOS
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user