Search code examples
react-nativemobileios-darkmodeandroid-dark-theme

I'm trying to implement dark mode in react native


When trying to assign the variable "theme" (which receives the useColorScheme library) as a style, the following error is presented.

Error image

Light and dark styles were created in styles.js.

Github Gist

Github project

Thank you very much in advance!


Solution

  • useColorScheme belongs to 'react-native-appearance', not 'react-native'.

    Example

    import { useColorScheme } from 'react-native-appearance'