0
votes

I use React Navigation and I need to set the background color of the status bar darker than header. But Android Emulator has already done this automatically, when my phone set bgColor: none.

If I use component StatusBar with attribute bg, I wont change bg(but I can change barStyle-_-)

Screen of my phone

Screen of Anroid Emulator

1
Please clearly tell, what you want to do?Karan Mehta
androidStatusBarColor="your hex colour"Wini
I want that statusBar bgColor change automatically as android emulatorNativeDev

1 Answers

0
votes

Use this one to change the background color of status bar in react native app

<StatusBar barStyle="light-content" backgroundColor="#1D6D91" />