import React from 'react'; import {createDrawerNavigator} from '@react-navigation/drawer'; import Icon from 'react-native-vector-icons/FontAwesome5'; // import Setting from '../screens/Setting'; // import UserInformation from '../screens/UserInformation'; import CustomDrawer from '../component/CustomDrawer'; import AppStack from './AppStack'; import AuthStack from './AuthStack'; import {BLACK, GRAY} from '../color'; const Drawer = createDrawerNavigator(); export default function DrawerNavigate() { return ( } screenOptions={{ headerShown: false, drawerActiveBackgroundColor: BLACK, drawerActiveTintColor: GRAY, drawerLabelStyle: { marginLeft: -25, }, }}> , }} /> {/* , }} /> , }} /> */} ); }