import React from "react"; import { createDrawerNavigator } from "@react-navigation/drawer"; import CustomDrawer from "@components/CustomDrawer/CustomDrawer"; import TabNavigator from "./TabNavigator"; import Ionicons from "@expo/vector-icons/Ionicons"; import SettingsScreen from "@screens/SettingsScreen"; import ProfileScreen from "@screens/ProfileScreen"; import { useTheme } from "@styles"; import { useTranslation } from "react-i18next"; const Drawer = createDrawerNavigator(); const AppStack = () => { const { colors } = useTheme(); const { t } = useTranslation(); return ( } screenOptions={{ headerShown: false, drawerActiveBackgroundColor: "#aa18ea", drawerActiveTintColor: "#fff", drawerInactiveTintColor: colors.textPrimary, drawerLabelStyle: { marginLeft: 5, fontSize: 16, }, }} > ( ), }} /> ( ), }} /> ( ), }} /> ); }; export default AppStack;