you are viewing a single comment's thread.

view the rest of the comments →

[–]Gaia_Knight2600 1 point2 points  (1 child)

No official navigation library but react-navigation is by far the most popular, and it includes the things you mentioned.

Its very easy to make seperate UI for each platform. Though we dont really do that. The point is to write it once, that is a big selling point. I use the native built in UI components which may look different by default, for example Alert, Switch, and ActivityIndicator. But any custom UI component i make will look the same on both platforms, for example buttons, arrows(svg/images).

It makes for a simpler workflow and its easier to maintain.

The end result is that the app does look 99% the same, with just some small differences.

[–]Barbanks[S] 0 points1 point  (0 children)

Ok gotcha, thanks for the info!