Answers for "react native remove darkmode"

0

react native remove darkmode

On IOS:
Go to ios > *name_app* > Info.plist and add inside <dict></dict>:
<key>UIUserInterfaceStyle</key>
<string>Light</string>

On Android:
Go to android > app > src > main > values > styles.xml and add inside <style></style>
<item name="android:forceDarkAllowed">false</item>
Posted by: Guest on June-09-2021
0

react native remove darkmode

On IOS:
Go to ios > *name_app* > Info.plist and add inside <dict></dict>:
<key>UIUserInterfaceStyle</key>
<string>Light</string>

On Android:
Go to android > app > src > main > values > styles.xml and add inside <style></style>
<item name="android:forceDarkAllowed">false</item>
Posted by: Guest on June-09-2021

Browse Popular Code Answers by Language