Reputation: 95
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.5
8 and I did like Facebook documentation but I got the error navigation has deprecated!
.
Upvotes: 0
Views: 355
Reputation: 3047
Most popular and stable react native navigation lib is react-navigation. Anyway there are few Alternatives
The decision is up to you
Upvotes: 2
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. Documentationreact-native-navigation
: uses the underlying native APIs on iOS and Android, this is a popular alternative to React Navigation which you already tried. DocumentationYou 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