On iOS simulator (13.3) and Android 10
I have an issue with Appearance and useColorScheme when I set up dark mode it's still returned "light".
import { useColorScheme, Appearance } from 'react-native';
const colorScheme = useColorScheme();
console.log(colorScheme, Appearance.getColorScheme()) // "light", "light"
Am I doing something wrong?