Skip to content

Instantly share code, notes, and snippets.

@dharavp
Created February 12, 2018 11:40
Show Gist options
  • Save dharavp/42219534aa97180a994504360acd356e to your computer and use it in GitHub Desktop.
Save dharavp/42219534aa97180a994504360acd356e to your computer and use it in GitHub Desktop.
render() {
return (
<View style = {
{
flex: 1,
flexDirection: ‘column’,
alignItems: ‘center’,
}
} >
< 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