How to disable dark-mode in React Native
Apr 9, 2023 · 1 min read · Android To disable dark mode on Android, go to styles.xml. This is the path android/app/src/main/res/values/styles.xml then add this piece of code <item name="android:forceDarkAllowed">false</item> Your styles.xml should now look somewhat like this ...
AArun commented

