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 MembershipWithdrawal from '../screens/MembershipWithdrawal'; import AppStack from './AppStack'; import AuthStack from './AuthStack'; const Drawer = createDrawerNavigator(); export default function DrawerNavigate() { return ( } screenOptions={{ headerShown: false, drawerActiveBackgroundColor: '#000000', drawerActiveTintColor: '#dddddd', drawerLabelStyle: { marginLeft: -25, }, }}> , }} /> {/* , }} /> , }} /> */} , }} /> ); }