如何在React Native for IOS app中禁用字体缩放?

设备字体大小的放大有时会中断(样式明智)。

对于React Native 0.56.0+

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

对于React原生0.55.0及更低版本

在应用程序的开头添加Text.defaultProps.allowFontScaling=false (例如main.js或app.js等…),以便在整个应用程序中对所有Text组件应用此prop。