iOSApp, remove preferredColorScheme in SwiftUI

This commit is contained in:
dima.avdeev 2023-08-28 13:23:52 +03:00 committed by GitHub
parent c20faa0995
commit 6a8fafa9a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ struct iOSApp: App {
ZStack { ZStack {
Color.white.ignoresSafeArea(.all) // status bar color Color.white.ignoresSafeArea(.all) // status bar color
ContentView() ContentView()
}.preferredColorScheme(.light) }
} }
} }
} }