How I can make the font size of the text auto change inside a view in react native?
I have text with different lengths, some of which doesn\'t fit the view so decrea
Without and headache you can use a small library which can maintain the font scale for each device.
npm i --save react-native-responsive-fontsize
But don't forget to add allowFontScaling={false} props to text. Because ios has auto fon scaling ability so font size could be different from your expectations sometimes.