Skip to content

Instantly share code, notes, and snippets.

@ridgeO
Last active May 30, 2017 05:35
Show Gist options
  • Save ridgeO/1f42e682bab265acb652978a4eec09f0 to your computer and use it in GitHub Desktop.
Save ridgeO/1f42e682bab265acb652978a4eec09f0 to your computer and use it in GitHub Desktop.
Code snippet from ReactNav application as featured in http://platypus.is/posts/4
# App.js
...
RedScreen.navigationOptions = props => {
const { navigation } = props;
return {
headerTitle: 'Red',
headerRight: (<Button title='Purple' onPress={() => navigation.navigate('Purple')}/>),
headerLeft: (<Button title='Blue' onPress={() => navigation.navigate('Blue')}/>)
}
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment