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
}
});