Skip to content

Instantly share code, notes, and snippets.

@ridgeO
Created May 30, 2017 03:45
Show Gist options
  • Save ridgeO/30403374af9f7cd9a9bda229627e6e00 to your computer and use it in GitHub Desktop.
Save ridgeO/30403374af9f7cd9a9bda229627e6e00 to your computer and use it in GitHub Desktop.
Code snippet from ReactNav application as featured in http://platypus.is/posts/4
# Styles.js
...
green: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: 'green'
},
red: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: 'red'
},
blue: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: 'blue'
},
purple: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: 'purple'
},
text: {
color: 'white',
fontSize: 20
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment