center element react native
var styles = StyleSheet.create({
content:{
flex:1,
flexDirection:'row',
alignItems:'center',
justifyContent:'center'
},
…
});
center element react native
var styles = StyleSheet.create({
content:{
flex:1,
flexDirection:'row',
alignItems:'center',
justifyContent:'center'
},
…
});
center an element react native
// Add these styles to a parent element (could be a view)
const styles = StyleSheet.create({
parent:{
flex:1, // Covers the available space
justifyContent:"center", // aligns through main axis
alignItems:"center" // aligns though secondary axis
}
});
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us