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.
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.
You could try Status bar's props barStyle like this:
import { StatusBar } from 'react-native';
...
<StatusBar barStyle="light-content" /> //or "dark-content"
...
I think you should use StatusBar - a react native base component to change your item color.
https://reactnative.dev/docs/statusbar#barstyle