react native fontweight code example
Example 1: font weight react native
subWarningText: {
color: '#5460C8',
fontWeight: Platform.OS === 'android' ? 'normal' : '400',
fontSize: 14 / fontScale,
marginLeft: scaleWidth(24),
marginRight: scaleWidth(10),
marginBottom: scaleHeight(276),
},
Example 2: 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