import { DotButton, DrawerCustom, MenuDrawerDynamicGrid, ViewWrapper, Spacing, } from "@/components"; import { IMenuDrawerItem } from "@/components/_Interface/types"; import LeftButtonCustom from "@/components/Button/BackButton"; import Event_BoxDetailPublishSection from "@/screens/Event/BoxDetailPublishSection"; import { menuDrawerPublishEvent } from "@/screens/Event/menuDrawerPublish"; import { router, Stack, useLocalSearchParams } from "expo-router"; import { useState } from "react"; export default function EventDetailContribution() { const { id } = useLocalSearchParams(); const [openDrawer, setOpenDrawer] = useState(false); const handlePress = (item: IMenuDrawerItem) => { console.log("PATH ", item.path); router.navigate(item.path as any); setOpenDrawer(false); }; return ( <> , headerRight: () => setOpenDrawer(true)} />, }} /> setOpenDrawer(false)} height={250} > ); }