Skip to content

Instantly share code, notes, and snippets.

@ridgeO
Created May 30, 2017 03:51
Show Gist options
  • Save ridgeO/857dc6bfbc565cba5e66edc119bb6f46 to your computer and use it in GitHub Desktop.
Save ridgeO/857dc6bfbc565cba5e66edc119bb6f46 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 {
static navigationOptions = {
title: 'Green'
}
render() {
return(
<View style={styles.green}>
<Text style={styles.text}>This is the Green Screen</Text>
</View>
);
}
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment