Reputation: 596
How to stop scaling the font size of React Native Application when the device font size is scaling up in Android
Upvotes: 1
Views: 2921
Reputation: 596
I just tried out with the following code. It helped to avoid font scaling in Text fields in React Native Application.
I edited App.js with the following code.
if (Text.defaultProps == null) Text.defaultProps = {};
Text.defaultProps.allowFontScaling = false;
Upvotes: 8