react native center align view code example
Example 1: items in center in native
var styles = StyleSheet.create({
content:{
flex:1,
flexDirection:'row',
alignItems:'center',
justifyContent:'center'
},
…
});
Example 2: react native component at bottom center
bottomCenter: {
flex: 1,
justifyContent: 'flex-end',
marginBottom: 30
}