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

Viewed 127

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 ??

1 Answers

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

Related