diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-13 04:27:21 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-13 04:29:52 +0000 |
| commit | 3a4b858c03bf775e63521f8f0e0a5e9e304dbceb (patch) | |
| tree | 1473ade5bdec7e5036a13c0c96342020610b5abb /packages/mobile/app/dashboard/_layout.tsx | |
| parent | 61e970bb8c75c6edb279447be3f7ca8a00bd607d (diff) | |
| download | karakeep-3a4b858c03bf775e63521f8f0e0a5e9e304dbceb.tar.zst | |
mobile: Add support for viewing lists
Diffstat (limited to 'packages/mobile/app/dashboard/_layout.tsx')
| -rw-r--r-- | packages/mobile/app/dashboard/_layout.tsx | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/packages/mobile/app/dashboard/_layout.tsx b/packages/mobile/app/dashboard/_layout.tsx index 590c82b1..4dd03d95 100644 --- a/packages/mobile/app/dashboard/_layout.tsx +++ b/packages/mobile/app/dashboard/_layout.tsx @@ -3,7 +3,22 @@ import { Stack } from "expo-router/stack"; export default function Dashboard() { return ( <Stack> - <Stack.Screen name="(tabs)" options={{ headerShown: false }} /> + <Stack.Screen + name="(tabs)" + options={{ headerShown: false, title: "Home" }} + /> + <Stack.Screen + name="favourites" + options={{ + title: "⭐️ Favourites", + }} + /> + <Stack.Screen + name="archive" + options={{ + title: "🗄️ Archive", + }} + /> </Stack> ); } |
