Migrating React Navigation to v7
If you upgrade to React Navigation v7, change the method you use to return to the previous screen from navigate
to popTo
.
For example, after upgrading to React Navigation v7, when you navigate from HomeScreen
to VideoCallScreen
and then want to return to HomeScreen
, you should call props.navigation.popTo('HomeScreen')
instead of props.navigation.navigate('HomeScreen')
.