different ways to navigate between screens react native code example
Example 1: navigation in react native
import { useNavigation } from '@react-navigation/native';
const navigation = useNavigation();
navigation.navigate('WallScreen')
Example 2: react native navigate two screens back
navigation.pop(n);
// n = number of screens to go back.