Reputation: 23
I have two stacks ( Home and Settings ) in the bottom tab bar, how to navigate using REACT NATIVE NAVIGATION from Home to Settings passing a props?
Upvotes: 0
Views: 52
Reputation: 119
Each of the screen gets 'navigation' as a prop. You can call navigation.navigate("<SCREEN_NAME>") to move to other screen.
Upvotes: 1