zeinab awada
zeinab awada

Reputation: 23

Navigate from a stack to another in react native navigation

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

Answers (1)

Krishna Dalam
Krishna Dalam

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

Related Questions