React Native change status bar text color in iOS

Fabrizio picture Fabrizio · Oct 5, 2018 · Viewed 7.6k times · Source

I'm developing an app using React Native, I've been asked to set the text color of the status bar in white.

I used the StatusBar component with the property barStyle="light-content" and it works pretty well on Android but not on iOS, the text color is still black.

I did some research about it but I couldn't find anything helpful. I even tried to select the Light Status bar style on XCode like the following picture shows but it still doesn't work

Answer

hook zou picture hook zou · Feb 26, 2019

I solved the problem! I use this code in Index page and set the text color to white:

<StatusBar  barStyle="light-content" translucent={true} />