Madhavi Jayasinghe
Madhavi Jayasinghe

Reputation: 596

How to avoid font scaling in React Native Application with device font

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

Answers (1)

Madhavi Jayasinghe
Madhavi Jayasinghe

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

Related Questions