Skip to content

Instantly share code, notes, and snippets.

@dharavp
Created February 12, 2018 11:33
Show Gist options
  • Save dharavp/c394b905379ebb42b84f59ddc645d38c to your computer and use it in GitHub Desktop.
Save dharavp/c394b905379ebb42b84f59ddc645d38c to your computer and use it in GitHub Desktop.
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