Reputation: 163
I have finished my app. When i install on IOS and the theme is dark , entries ,pickers etc backgroud color is black. How to disable change of themes affect the application?
Upvotes: 1
Views: 1283
Reputation: 9224
Based on your description, if you want to disable the dark mode.
Try to set the property UIUserInterfaceStyle
to Light
in the info.plist
.
If you add the property, your application will be light mode if user change the dark mode.
Upvotes: 5