Reputation: 157
I am still learning react-native. Is there a way to make UI's fully responsive on various sizes and angles of mobile phones?
I am currently designing an app and I am getting few non-responsive issues even if I use Flexbox. Whats is the most efficient way top make this app fully responsive on any mobile?
Thank you in advance
Upvotes: 1
Views: 336
Reputation: 2668
Using Flexbox without hard Coded values for width and height will make your app responsive on devices plus taking care of diminsions through react-native apis
Upvotes: 3
Reputation: 4199
Things that helped me get started with react native.The more u read the more u learn.
1) Keeping things neat with Flux
2) Never define width and height as constant values.
3) Use Metrics to get the screen dimensions and use them properly.
3) Make use of Animated API, React Redux
4) Refer apps like f8,HackerNews
Upvotes: 2