Last active
March 13, 2025 16:23
-
-
Save hirbod/d6bb5d0fc946a12ba9e3cf01120c604a to your computer and use it in GitHub Desktop.
Expo Config Plugin to disable forced Dark mode.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// disable forced dark mode to prevent weird color changes | |
// eslint-disable-next-line @typescript-eslint/no-var-requires | |
const { createRunOncePlugin, withAndroidStyles, AndroidConfig } = require('expo/config-plugins') | |
function setForceDarkModeToFalse(styles) { | |
const newStyles = AndroidConfig.Styles.assignStylesValue(styles, { | |
add: true, | |
// ############# FOLLOW IF YOU'RE ON SDK 52 ############# | |
// TODO: AndroidConfig.Styles.getAppThemeGroup() will be available in SDK 52 (or expo/config-plugins 9+), for now I just hardcoded AppTheme | |
// parent: AndroidConfig.Styles.getAppThemeGroup(), | |
parent: { name: 'AppTheme' }, | |
name: `android:forceDarkAllowed`, | |
value: 'false', | |
}) | |
return newStyles | |
} | |
const withDisableForcedDarkModeAndroid = (config) => { | |
return withAndroidStyles(config, (config) => { | |
config.modResults = setForceDarkModeToFalse(config.modResults) | |
return config | |
}) | |
} | |
module.exports = createRunOncePlugin( | |
withDisableForcedDarkModeAndroid, | |
'disable-forced-dark-mode', | |
'1.0.0' | |
) |
Updated the gist
<resources xmlns:tools="http://schemas.android.com/tools">
<style name="AppTheme" parent="Theme.EdgeToEdge">
<item name="android:textColor">@android:color/black</item>
<item name="android:editTextStyle">@style/ResetEditText</item>
<item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="android:forceDarkAllowed">false</item>
<item name="android:windowLightStatusBar">true</item>
<item name="android:windowLightNavigationBar">false</item>
<item name="enforceNavigationBarContrast">false</item>
</style>
<style name="ResetEditText" parent="@android:style/Widget.EditText">
<item name="android:padding">0dp</item>
<item name="android:textColorHint">#c8c8c8</item>
<item name="android:textColor">@android:color/black</item>
</style>
<style name="Theme.App.SplashScreen" parent="Theme.SplashScreen">
<item name="windowSplashScreenBackground">@color/splashscreen_background</item>
<item name="windowSplashScreenAnimatedIcon">@drawable/splashscreen_logo</item>
<item name="postSplashScreenTheme">@style/AppTheme</item>
</style>
</resources>
@hirbod forceDarkAllowed is being copied to the styles.xml file. But it is not being applied in the build. Using expo android release build.
Splash screen (background color given as white using expo-splash-screen plugin) is still showing a black background when in dark mode.
I have given userInterfaceStyle: light in app.config.ts
I tried applying false under Theme.App.SplashScreen, still same result. I am testing in a Redmi phone. Any help?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sorry, here is the updated file which works with EdgeToEdge @felippewick
If you're on SDK52, you can change the TODO