Created
February 12, 2018 11:33
-
-
Save dharavp/c394b905379ebb42b84f59ddc645d38c 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: ‘center’, //changed value of alignItems | |
} | |
} > | |
< View style = {{width: 50,height: 50,backgroundColor: ‘powderblue’}} /> | |
< View style = {{width: 50,height: 50,backgroundColor: ‘skyblue’}} /> | |
< View style = {{width: 50,height: 50,backgroundColor: ‘steelblue’}} /> | |
</View> | |
); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment