forked from shadowfacts/Tusker
visionOS: Hide light/dark mode prefs
This commit is contained in:
parent
78196e14c3
commit
27dd8a1927
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue