Answers for "react native text font scaling and font bold"

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),
  },
Posted by: Guest on May-19-2021
0

react native scaling font

<Text
    numberOfLines={1}// add this
    adjustsFontSizeToFit// add this
    style={{textAlign:'center',fontSize:30}}
  >
Posted by: Guest on May-06-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language