Recat navigation code example

Example 1: navigation in react native

import { useNavigation } from '@react-navigation/native';

const navigation = useNavigation();
navigation.navigate('WallScreen')

Example 2: react navigation

#expo managed project
npm install @react-navigation/native
expo install react-native-gesture-handler react-native-reanimated react-native-screens react-native-safe-area-context @react-native-community/masked-view

Example 3: react navigation

expo install react-native-gesture-handler react-native-reanimated react-native-screens react-native-safe-area-context @react-native-community/masked-view
Copy