anna
anna

Reputation: 95

Is there any new good source for navigation in react-native?

I am new in react-native and I have many problems in using navigation libraries and their options. I tried to use Wix v1, Wix v2 and react-navigation but in each of them I had a lot of errors and it took me a lot of time.I could overcome some of them but not completely. It made me frustrated. Because I cannot make progress without navigation, please someone save my life and introduce me some new documentation or give me some advices on this. For example I have tried react-navigation and I built a project with react-native version 0.58 and I did like Facebook documentation but I got the error navigation has deprecated!.

Upvotes: 0

Views: 355

Answers (2)

Niroshan Ranapathi
Niroshan Ranapathi

Reputation: 3047

Most popular and stable react native navigation lib is react-navigation. Anyway there are few Alternatives

  1. Native Navigation
  2. react-native-router-flux
  3. react-native-navigation
  4. react-router-native

The decision is up to you

Upvotes: 2

Firdous nath
Firdous nath

Reputation: 1587

React Navigation isn't your only option for routing and navigation in React Native.

The best libraries for navigations which I personally prefer are :

  • react-native-router-flux: this library is very popular and best in market which is based on React Navigation & provides you with a different API's to interact with it. Documentation
  • react-native-navigation: uses the underlying native APIs on iOS and Android, this is a popular alternative to React Navigation which you already tried. Documentation

You can also read a detailed article on medium here which compares different navigation libraries and features and other aspects.

Also you can check other questions raised by react-native enthusiasts.

Upvotes: 2

Related Questions