Home > Blockchain >  How to make React-Native App Responsive without using Dimension property of react-native?
How to make React-Native App Responsive without using Dimension property of react-native?

Time:03-22

I want to make React-Native App Responsive without using Dimensions as every time it calculate the Screen Height and Width according to windows size and every time it does calculations at Abstract level . Is there any other way to do so ??

CodePudding user response:

you can rely on Flexbox for your layout instead of dimensions and percentages to achieve that, if I'm understanding your question correctly

CodePudding user response:

You can take reference of this. : Responsiveness in React-Native

  • Related