diff options
Diffstat (limited to 'packages/mobile/app/dashboard/(tabs)/_layout.tsx')
| -rw-r--r-- | packages/mobile/app/dashboard/(tabs)/_layout.tsx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/packages/mobile/app/dashboard/(tabs)/_layout.tsx b/packages/mobile/app/dashboard/(tabs)/_layout.tsx index c15f37f1..74557eda 100644 --- a/packages/mobile/app/dashboard/(tabs)/_layout.tsx +++ b/packages/mobile/app/dashboard/(tabs)/_layout.tsx @@ -1,5 +1,5 @@ import { Tabs } from "expo-router"; -import { Home, Settings } from "lucide-react-native"; +import { ClipboardList, Home, Settings } from "lucide-react-native"; import React from "react"; export default function TabLayout() { @@ -13,6 +13,13 @@ export default function TabLayout() { }} /> <Tabs.Screen + name="lists" + options={{ + title: "Lists", + tabBarIcon: ({ color }) => <ClipboardList color={color} />, + }} + /> + <Tabs.Screen name="settings" options={{ title: "Settings", |
