Change app background color in React Native
问题 I'm trying to change the color of the background in my react native app, from grey to white. I'm using react-navigation to make a TabNavigator after I render it. I tried to put this TabNavigator in a view and set backgroundColor but all screen became white. How can I solve this? index.js ... render() { return ( <View style={{ backgroundColor: '#FFFFFF'}}> <Tabs /> </View> ) } ... Tabs ... const Tabs = TabNavigator( { Home: { screen: HomeStack, navigationOptions: { title: 'Acasa', }, }, ...