1

In React native, is the font size responsive on its own? for example, if I give fontSize:10 to a Text component, will it automatically increase/decrease based on the size of the phone? If not, how to make it responsive?

Karan
  • 141
  • 2
  • 13

1 Answers1

2

enter link description hereThe font size is automatically adjusted according to the size of the screen. Try applying this method.

yarn add react-native-responsive-fontsize
npm install react-native-responsive-fontsize --save
Tyler Minegar
  • 317
  • 1
  • 5