This app shows two pieces of text centered on the screen. The first is a bold title, and the second is a smaller description.
import React from 'react';
import { SafeAreaView, Text, StyleSheet } from 'react-native';
export default function App() {
return (
<SafeAreaView style={styles.container}>
<Text style={styles.title}>Welcome to My App</Text>
<Text style={styles.description}>This is a simple text example.</Text>
</SafeAreaView>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#f0f0f0'
},
title: {
fontSize: 24,
fontWeight: 'bold',
marginBottom: 10
},
description: {
fontSize: 16,
color: '#333'
}
});