Search code examples
react-nativereact-native-ui-kitten

How can I change text color of items in safe area in React Native?


I am trying to change the color of text and other icons in SafeAreaView (check this Screenshot) based on theme in react-native-ui-kitten. I tried setting color in stylesheet but no good.


Solution

  • You could try Status bar's props barStyle like this:

    import { StatusBar } from 'react-native';
    ...
    <StatusBar barStyle="light-content" /> //or "dark-content" 
    ...
    

    DOC example