You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 3, 2021. It is now read-only.
If I go and change the iPhone settings to dark or light, the text does not change unless i refresh the page or hot reload when using expo, how can i solve it, everything is working perfectly except such thing
Hello,
I have this code in a screen:
import { useTheme } from "@react-navigation/native";
const { colors } = useTheme();
useLayoutEffect(() => {
navigation.setOptions({
headerRight: () => (
<Text styles={color: colors.text}}>TEST
),
});
}, [badge]);
If I go and change the iPhone settings to dark or light, the text does not change unless i refresh the page or hot reload when using expo, how can i solve it, everything is working perfectly except such thing