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.
Asked
Active
Viewed 2,039 times
3

Saihaj
- 496
- 5
- 13
2 Answers
4
You could try Status bar's props barStyle
like this:
import { StatusBar } from 'react-native';
...
<StatusBar barStyle="light-content" /> //or "dark-content"
...

高鵬翔
- 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