How to disable font scaling in React Native for IOS app?

后端 未结 5 981
小蘑菇
小蘑菇 2020-12-14 06:43

Enlargement of size of the device font will sometimes break (Styling wise).

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-14 07:17

    In another file, import the actual Text component as ScaledText so as a backup, and then redefine Text, overriding the allowFontScaling prop.

    export function Text(props) {
      return ;
    }
    

    Then, import your locally defined Text component, instead of the built-in React Native Text. This is also useful if you want to elegantly disable font scaling on only certain parts of your app.

提交回复
热议问题