Answers for "Font Size changed from device OS react native app"

0

Font Size changed from device OS react native app

// Override Text scaling
if (Text.defaultProps) {
  Text.defaultProps.allowFontScaling = false;
} else {
  Text.defaultProps = {};
  Text.defaultProps.allowFontScaling = false;
}

// Override Text scaling in input fields
if (TextInput.defaultProps) {
  TextInput.defaultProps.allowFontScaling = false;
} else {
  TextInput.defaultProps = {};
  TextInput.defaultProps.allowFontScaling = false;
}
 Run code snippet
Posted by: Guest on March-02-2022

Code answers related to "Font Size changed from device OS react native app"

Code answers related to "Javascript"

Browse Popular Code Answers by Language