react navigation vs react native navigation - react-native

what you recommend to use react navigation or react native navigation for large projects? and who has better performance?
I heard a lot of that react navigation has a better performance then I hear react native navigation has better performance. I cant decide which I can use for large project

Related

Why is there no BottomNavigation for Android included in React Native?

I am new to ReactNative and confused that there is no Android BottomNavigation included
(image source: https://material.io/components/bottom-navigation/)
What's the reason for this and what's the best practive way to get one? (with and without expo)
To do this, you need to use one of the existing React Native navigation libraries
Try using it reactNvigation
https://reactnavigation.org/docs/en/material-bottom-tab-navigator.html
or use NativeBase

Preferred React Native navigation library

I'm looking for a navigation library for a new React Native project. I've read information on this 3 main libraries:
react-native-router-flux
react-native-navigation
"Standard" react native navigation system
I have read that the "standard" system is very buggy, is it true?
What is your favorite navigation library to date?
The most used navigation library for react is react-navigation as it is kind of simple to use, has a lot of features and can be customise at will.
react-native-router-flux is a wrapper over react-navigation, it is really simple to use and allows you to write a lot less code than with react-navigation, however if you want to implement complex features it might not be the best choice.
react-native-navigation aims to do the same things as react-navigation but... misses the point, as it clearly lakes some complex features that react-navigation has.
I suggest you to read https://medium.com/#ian.mundy/choosing-a-routing-library-for-react-native-604f97e58729 if you can, although that article is from 2017 it is still relevant !
You should give the Navigation router a try. It provides 100% native navigation on iOS and Android. It isn’t like React Native Navigation because it doesn’t require any native setup and has a JavaScript array representation of the native stack of screens.

React native navigation which is the best solution

Which navigation is best to use in react native with redux
react navigation
react native navigation
react native router flux
Is here anything best rather than this ?
I would go with react navigation for redux. It is pretty easy, there is a good number of tutorials as well as their documentation I would say is pretty clear: https://reactnavigation.org/docs/en/redux-integration.html
You should give the Navigation router a try. It provides 100% native navigation on iOS and Android. It doesn’t require you to do anything special to integrate with Redux. Wrap the top level component in a Redux Provider component and away you go. I’ve written a Redux example to get you started
React-Navigation itself answers your question here

React Navigation and redux: two dispatches?

I am developing a React Native app using React Navigation and redux. I have been reading countless questions dancing around the proper way to implement the two libraries. My question is: Is there any relationship between navigation.dispatch() and redux’s dispatch()?
To be clear if I implement React Navigation with redux as described in the redux integration section could I dispatch other non-navigation actions through navigation.dispatch? This stems from trying to dispatch a logout action from a header button attached to a TabNavigator (as a child of a StackNavigator). Trying to access redux’s dispatch inside this header seems quite tricky.

Drawer Layout DefaultRenderer React Native

I am fairly new to React Native, as it would be the correct way to have a Drawer Layout that is present in several of the screens of the app. Thank you very much for your help!