How do I change the color of the navigation header in a React Native app?
I tried initialising background color but it didn't work.
Below is my code snippet for navigationOptions
:
static navigationOptions = ({ navigation }) => ({
header: props => <Header
navigation={navigation}
title={'Dashboard'}
toggleDrawer
/>
})
Also, is it possible to set status bar color?