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 74557eda..5b2d810a 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 { ClipboardList, Home, Settings } from "lucide-react-native"; +import { ClipboardList, Home, Search, Settings } from "lucide-react-native"; import React from "react"; export default function TabLayout() { @@ -13,6 +13,13 @@ export default function TabLayout() { }} /> <Tabs.Screen + name="search" + options={{ + title: "Search", + tabBarIcon: ({ color }) => <Search color={color} />, + }} + /> + <Tabs.Screen name="lists" options={{ title: "Lists", |
