Skip to content

Instantly share code, notes, and snippets.

@brookslyrette
Created August 20, 2017 19:27
Show Gist options
  • Select an option

  • Save brookslyrette/bf3df2ad046a3fa0f464203a6c0b7e2d to your computer and use it in GitHub Desktop.

Select an option

Save brookslyrette/bf3df2ad046a3fa0f464203a6c0b7e2d to your computer and use it in GitHub Desktop.
import { StackNavigator } from 'react-navigation';
// screens are here
const Navigator = StackNavigator({
Screen1: { screen: Screen1 },
Screen2: { screen: Screen2 },
Screen3: { screen: Screen3 },
}, {
navigationOptions: {
headerTitle: 'Default App Title',
headerTitleStyle: {
color: '#FFF'
},
headerStyle: {
backgroundColor: '#f57c00'
},
headerBackTitle: null,
headerTintColor: '#FFF',
}
// styles
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment