0

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
  • 77
  • 1
  • 5

1 Answers1

1

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
Alex Dean
  • 197
  • 5