diff --git a/native/themes/theme-handler.react.js b/native/themes/theme-handler.react.js --- a/native/themes/theme-handler.react.js +++ b/native/themes/theme-handler.react.js @@ -30,7 +30,8 @@ React.useEffect( () => { - updateSystemTheme(Appearance.getColorScheme()); + const colorScheme = Appearance.getColorScheme(); + updateSystemTheme(colorScheme === 'unspecified' ? null : colorScheme); }, // eslint-disable-next-line react-hooks/exhaustive-deps [],