How can I move the hello world sentence to the middle of the screen
Here are my codes:
import React from "react";
import {StyleSheet, Text, View} from "react-native";
export default function App(){
return(
<View style = {StyleSheet.container}>
<Text> Hello World</Text>
</View>
);
}
{/* stylings of react native*/}
const styles = StyleSheet.create({
container:{
flex:1,
backgroundColor:"blue",
alignContent:"center",
justifyContent:"center"
}
})
result: Image