import { createDrawerNavigator } from "@react-navigation/drawer"; import { IconButton } from "react-native-paper"; import GraphsList from "./GraphsList"; import InsightsPage from "./InsightsPage"; import PlanList from "./PlanList"; import SetList from "./SetList"; import SettingsPage from "./SettingsPage"; import TimerPage from "./TimerPage"; import WeightList from "./WeightList"; import ExerciseList from "./ExerciseList"; import { DrawerParams } from "./drawer-param-list"; import useDark from "./use-dark"; const Drawer = createDrawerNavigator(); export default function AppDrawer() { const dark = useDark(); return ( }} /> }} /> }} /> , }} /> }} /> }} /> , }} /> }} /> ); }