Created
June 27, 2019 17:18
-
-
Save trinadhkoya/5bc208c4692a3cb10fdf0889d09a5b1c to your computer and use it in GitHub Desktop.
The below snippet disables the font scaling through out your react native app.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (Text.defaultProps == null) { | |
Text.defaultProps = {}; | |
Text.defaultProps.allowFontScaling = false; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment