React-Native: Text is rendering differently in different mobile phones

669 Views Asked by At

This is the style I ma using to render Text

 TEXT_B16: {
    fontFamily: 'OpenSans-Bold',
    fontWeight: fontWeight,
    fontSize: 16,
    lineHeight: 22,
},

And output is as follows,

Samsung

enter image description here

One plus

enter image description here

iPhone 12 Pro Max

enter image description here

iPhone 6

enter image description here

even though Styling is same, fontSize and fontWeight are different in different screens.

Is it the natural thing that happens in mobile apps or is there any way to bring some uniformity across multiple devices?

(Please excuse for bigger images. If I compress then it would be difficult to identify differences)

Thank You.

1

There are 1 best solutions below

1
On

In your text component disable allowFontScaling

<Text allowFontScaling={false} />