react native navigation library code example
Example 1: navigation in react native
import { useNavigation } from '@react-navigation/native';
const navigation = useNavigation();
navigation.navigate('WallScreen')
Example 2: library to add navigation in react native
import {createDrawerNavigator, DrawerContentScrollView,DrawerItem} from '@react-navigation/drawer'