Search code examples
javascriptreact-nativeresponsive-design

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


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


Solution

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