StatusBar

Configuração da Statusbar

Exemplo do uso (Arquivo App.js):

export default function App() {
return (
<>
<StatusBar barStyle="light-content" backgroundColor="#7159c1" />
<Routes />
</>
);
}

Opções da navegação

Exemplo do uso (arquivo routes.js):

const Routes = createAppContainer(
createStackNavigator(
{
Main: {
screen: Main,
navigationOptions: {
title: 'DevRadar',
},
Profile: {
screen: Profile,
navigationOptions: {
title: 'Perfil no Github',
},
},
},
Profile,
},
{
defaultNavigationOptions: {
headerTintColor: '#FFF',
headerBackTitleVisible: false,
headerStyle: {
backgroundColor: '#7159c1',
},
headerTitleAlign: 'center',
},
}
)
);
export default Routes;