logo
On this page

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').

Previous

Migrating react-native to v0.80

Next

Migrating to v6.5

On this page

Back to top