color text react-native code example
Example 1: color text react native
<Text
style={styles.headline}>Hi, Lunox!
</Text>
headline: {
color: 'white',
textAlign: 'center',
fontWeight: 'bold',
fontSize: 50,
backgroundColor: 'purple',
}
Look how I use it here:
https://github.com/Lunox-code/100dayscode-react.native/blob/master/App.js
Example 2: styles in react native
import { StyleSheet} from 'react-native';
<View style={styles.container}>
</View>
const styles = StyleSheet.create({
container: {
marginTop: 50,
},
});