React Native Responsive Font Size

前端 未结 14 1254
执念已碎
执念已碎 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:01

    Take a look at the library I wrote: https://github.com/tachyons-css/react-native-style-tachyons

    It allows you to specify a root-fontSize (rem) upon start, which you can make dependent of your PixelRatio or other device-characteristics.

    Then you get styles relative to your rem, not only fontSize, but paddings etc. as well:

    
         Something
    
    

    Expanation:

    • f5is always your base-fontsize
    • pa2 gives you padding relative to your base-fontsize.

提交回复
热议问题