Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import { StatusBar } from "expo-status-bar";
- import { StyleSheet, Text, View } from "react-native";
- export default function App() {
- return (
- <View style={styles.container}>
- <Text style={styles.textStyle}>Hello World</Text>
- <StatusBar style="auto" />
- </View>
- );
- }
- const styles = StyleSheet.create({
- container: {
- flex: 1,
- backgroundColor: "#a20000",
- alignItems: "center",
- justifyContent: "center",
- },
- textStyle: {
- color: "#fff",
- fontSize: 30,
- },
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement