Last active
May 30, 2017 05:25
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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