Asela Wijesinghe
Asela Wijesinghe

Reputation: 157

How to make fully responsive mobile apps using react-native?

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

Answers (2)

Ahmed Ali
Ahmed Ali

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

Victor
Victor

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

Related Questions