3

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.

Saihaj
  • 496
  • 5
  • 13

2 Answers2

4

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

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

DOC example

高鵬翔
  • 1,997
  • 2
  • 8
  • 21
0

I think you should use StatusBar - a react native base component to change your item color. https://reactnative.dev/docs/statusbar#barstyle

Brian H.
  • 1,603
  • 11
  • 16