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

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

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

5条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-14 07:06

     if (Text.defaultProps == null) {
                Text.defaultProps = {};
                Text.defaultProps.allowFontScaling = false;
            }
    

    I kept this piece of code inside the constructor of index.js.It really worked well. By the I am using react native version 0.59.9 FYI.

提交回复
热议问题