diff options
Diffstat (limited to 'apps/mobile/app/dashboard/(tabs)/_layout.tsx')
| -rw-r--r-- | apps/mobile/app/dashboard/(tabs)/_layout.tsx | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/apps/mobile/app/dashboard/(tabs)/_layout.tsx b/apps/mobile/app/dashboard/(tabs)/_layout.tsx index 316eddcf..5cc6aa92 100644 --- a/apps/mobile/app/dashboard/(tabs)/_layout.tsx +++ b/apps/mobile/app/dashboard/(tabs)/_layout.tsx @@ -2,7 +2,13 @@ import React, { useLayoutEffect } from "react"; import { Tabs, useNavigation } from "expo-router"; import { StyledTabs } from "@/components/navigation/tabs"; import { useColorScheme } from "@/lib/useColorScheme"; -import { ClipboardList, Home, Settings, Tag } from "lucide-react-native"; +import { + ClipboardList, + Highlighter, + Home, + Settings, + Tag, +} from "lucide-react-native"; export default function TabLayout() { const { colors } = useColorScheme(); @@ -45,6 +51,13 @@ export default function TabLayout() { }} /> <Tabs.Screen + name="highlights" + options={{ + title: "Highlights", + tabBarIcon: ({ color }) => <Highlighter color={color} />, + }} + /> + <Tabs.Screen name="settings" options={{ title: "Settings", |
