In my React Native app, I have <Text>
items that on some phones overflow and take up two lines. Is it possible to adjust the fontSize dynamically to make sure the text fits in one line?
React Native: is it possible to adjust fontSize to make sure font fits in one line?
5.7k Views Asked by gkeenley At
2
There are 2 best solutions below
0

Possibly the oft-used prop in React Native to scale down the font size automatically according to given parent component width and height is adjustsFontSizeToFit
.
<View>
<Text style={styles.text} numberOfLines={1} adjustsFontSizeToFit>
</View>
numberOfLines={1}
defines how many lines we want to display on screen. And in the above case, it is just 1.
Hope it helps.
Yes. You can use pixelratio and dimensions from react native Use it as below
For the box style, use the above method as follows.
Above method is more accurate when you want to dynamically change the font size.
But if you only want to fit the text to a single line you can also use adjustsFontSizeToFit as follows