React Native Responsive Font Size

前端 未结 14 1245
执念已碎
执念已碎 2020-11-29 16:39

I would like to ask how react native handle or do the responsive font. For example in iphone 4s i Have fontSize: 14, while in iphone 6 I have fontSize: 18.

14条回答
  •  清酒与你
    2020-11-29 17:03

    Need to use this way I have used this one and it's working fine.

    react-native-responsive-screen npm install react-native-responsive-screen --save

    Just like I have a device 1080x1920

    The vertical number we calculate from height **hp**
    height:200
    200/1920*100 = 10.41% - height:hp("10.41%")
    
    
    The Horizontal number we calculate from width **wp**
    width:200
    200/1080*100 = 18.51% - Width:wp("18.51%")
    

    It's working for all device

提交回复
热议问题