Last active
February 12, 2018 11:30
-
-
Save dharavp/1c7559c74b6b406441ba96c1574c9a05 to your computer and use it in GitHub Desktop.
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
render() { | |
return ( | |
< View style = { | |
{ | |
flex: 1, | |
flexDirection: ‘row’, | |
justifyContent: ‘center’, | |
alignItems: ‘stretch’, | |
} | |
} > | |
< View style = {{width: 50,backgroundColor: ‘powderblue’}} /> | |
< View style = {{width: 50,backgroundColor: ‘skyblue’}} /> | |
< View style = {{width: 50,backgroundColor: ‘steelblue’}} /> | |
</View> | |
); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment