Skip to content

Instantly share code, notes, and snippets.

@ridgeO
Last active May 30, 2017 05:25
Show Gist options
  • Save ridgeO/462496aeba91d16e24083841310be108 to your computer and use it in GitHub Desktop.
Save ridgeO/462496aeba91d16e24083841310be108 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(
<View style={styles.green}>
...
<TouchableHighlight
style={styles.button}
onPress={() => this.props.navigation.navigate('Home')}
>
<Text style={styles.text}>Go to Red</Text>
</TouchableHighlight>
</View>
);
}
}
class RedScreen extends Component {
render() {
return(
<View style={styles.red}>
...
<TouchableHighlight
style={styles.button}
onPress={() => this.props.navigation.navigate('Landing')}
>
<Text style={styles.text}>Back to Green</Text>
</TouchableHighlight>
...
</View>
);
}
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment