I just got started with React Native for Android, and I\'m trying to figure out if there\'s a way to change the status bar color for Android...
Like this?
Just add the following code to your App.js file inside your class component.
componentDidMount(){ StatusBar.setBarStyle( 'light-content',true) StatusBar.setBackgroundColor("Your color Hex-code here") }
And add this to your import statements.
import {StatusBar} from 'react-native';