I\'m new to React Native and I\'m currently studying the React Native Navigation Docs. I was wondering:
What is the difference between navigation.push() and
I think I can answer the question.
We have three pages:home page1 page2.
"home" is the "initialRouteName",and "page1" and "page2" is child pages.
So when we start with home,and push page1 (or navigate page1),the page stack is:
(2). page1
(1). home
and I push three times page2,the stack is:
(5). page2
(4). page2
(3). page2
(2). page1
(1). home
Now I want to go home, I can
1 pop Four times, or pop(4) directly;
2 navigate page1, then pop one time;
3 popToTop one time;
when page stack has no page1,navigate works the same as push,push page to top of stack and show the page.
when page stack has page1,the function of navigate is to jump to the page1 which is closest to the top of the stack,and pop others pages above page1.
For example, the following page stack:
(7). page2
(6). page2
(5). page2
(4). page1
(3). page1
(2). page1
(1). home
If you wan to go back to home,you should navigate page1 firstly ,then pop three times.
Tt should be noted that when current page is page1 and you navigate to page1,nothing
happened.
Here are some of the tests code I wrote,you just copy to App.js.
import * as React from 'react';
import { Button, View,Text } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
function HomeScreen({ navigation }) {
return (
);
}
function Page({route, navigation }) {
return (
{`current page is ${route.name}`}
navigation.navigate('page1')}
/>
navigation.push('page1')}
/>
navigation.push('page2')}
/>
navigation.push('page2')}
/>
navigation.navigate('Home')}
/>
navigation.pop()}
/>
navigation.popToTop()}
/>
);
}
const Stack = createStackNavigator();
function MyStack() {
return (
);
}
export default function App() {
return (
);
}
I hope it will be helpful to you.