diff --git a/Tusker/Screens/Preferences/AppearancePrefsView.swift b/Tusker/Screens/Preferences/AppearancePrefsView.swift index 16ea80eb..1e59399f 100644 --- a/Tusker/Screens/Preferences/AppearancePrefsView.swift +++ b/Tusker/Screens/Preferences/AppearancePrefsView.swift @@ -56,6 +56,7 @@ struct AppearancePrefsView : View { private var themeSection: some View { Section { + #if !os(visionOS) Picker(selection: $preferences.theme, label: Text("Theme")) { Text("Use System Theme").tag(UIUserInterfaceStyle.unspecified) Text("Light").tag(UIUserInterfaceStyle.light) @@ -68,6 +69,7 @@ struct AppearancePrefsView : View { Text("Pure Black Dark Mode") } } + #endif Picker(selection: $preferences.accentColor, label: Text("Accent Color")) { ForEach(accentColorsAndImages, id: \.0.rawValue) { (color, image) in