Using react navigation, navigate from a screen in a navigator to a screen in a different navigator.
If I have the following
You can use the third parameter of navigate to specify sub actions.
For example, if you want to go from screen D under nested navigator 2, to screen A under nested navigator 1:
this.props.navigation.navigate(
'NestedNavigator1',
{},
NavigationActions.navigate({
routeName: 'screenB'
})
)
Check also: https://reactnavigation.org/docs/nesting-navigators/