Handling UI
Last updated
import { StyleSheet, Text, View } from 'react-native';
const App = () => (
<View style={styles.container}>
<Text style={styles.title}>React Native</Text>
</View>
);
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#eaeaea',
},
title: {
marginTop: 16,
backgroundColor: '#61dafb',
color: '#20232a',
fontSize: 30,
fontWeight: 'bold',
},
});