import { Platform, View } from "react-native"; import * as Haptics from "expo-haptics"; import { Stack, useRouter } from "expo-router"; import BookmarkList from "@/components/bookmarks/BookmarkList"; import { MenuView } from "@react-native-menu/menu"; import { SquarePen } from "lucide-react-native"; function HeaderRight() { const router = useRouter(); return ( { Haptics.selectionAsync(); if (nativeEvent.event === "note") { router.navigate("dashboard/add-note"); } else if (nativeEvent.event === "link") { router.navigate("dashboard/add-link"); } }} actions={[ { id: "link", title: "New Link", image: Platform.select({ ios: "link", android: "ic_menu_link", }), }, { id: "note", title: "New Note", image: Platform.select({ ios: "note", android: "ic_menu_note", }), }, ]} shouldOpenOnLongPress={false} > Haptics.selectionAsync()} /> ); } export default function Home() { return ( <> , }} /> ); }