Karan
Karan

Reputation: 181

Font size responsiveness in React Native

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?

Upvotes: 1

Views: 432

Answers (1)

Tyler Minegar
Tyler Minegar

Reputation: 315

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

Upvotes: 2

Related Questions