How to adjust font size to fit view in React Native for Android?

后端 未结 6 2111
死守一世寂寞
死守一世寂寞 2020-12-16 10:14

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

6条回答
  •  庸人自扰
    2020-12-16 10:56

    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

    import RF from "react-native-responsive-fontsize"

    fontSize: RF(2)

    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.

提交回复
热议问题