react native navigator drawer install code example
Example: react native drawer navigation example
import * as React from 'react';
import { Button, View } from 'react-native';
import { createDrawerNavigator } from '@react-navigation/drawer';
import { NavigationContainer } from '@react-navigation/native';
function HomeScreen({ navigation }) {
return (
);
}
function NotificationsScreen({ navigation }) {
return (
);
}
const Drawer = createDrawerNavigator();
export default function App() {
return (
);
}