Skip to content

Instantly share code, notes, and snippets.

@ridgeO
Created May 30, 2017 04:54
Show Gist options
  • Save ridgeO/273bda158b29a7ab3fb344ef17b30188 to your computer and use it in GitHub Desktop.
Save ridgeO/273bda158b29a7ab3fb344ef17b30188 to your computer and use it in GitHub Desktop.
Code snippet from ReactNav application as featured in http://platypus.is/posts/4
# App.js
...
class GreenScreen extends Component {
render() {
return(
....
<TouchableHighlight
style={styles.button}
onPress={() => this.props.navigation.navigate('DrawerOpen')}
>
<Text style={styles.text}>Open Drawer</Text>
</TouchableHighlight>
...
);
}
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment