aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app/dashboard/_layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--apps/mobile/app/dashboard/_layout.tsx45
1 files changed, 45 insertions, 0 deletions
diff --git a/apps/mobile/app/dashboard/_layout.tsx b/apps/mobile/app/dashboard/_layout.tsx
index 609f06f5..bc743c7a 100644
--- a/apps/mobile/app/dashboard/_layout.tsx
+++ b/apps/mobile/app/dashboard/_layout.tsx
@@ -50,6 +50,49 @@ export default function Dashboard() {
}}
/>
<Stack.Screen
+ name="bookmarks/[slug]/index"
+ options={{
+ headerTitle: "",
+ headerBackTitle: "Back",
+ headerTransparent: true,
+ }}
+ />
+ <Stack.Screen
+ name="bookmarks/new"
+ options={{
+ headerTitle: "New Bookmark",
+ headerBackTitle: "Back",
+ headerTransparent: true,
+ presentation: "modal",
+ }}
+ />
+ <Stack.Screen
+ name="bookmarks/[slug]/manage_lists"
+ options={{
+ headerTitle: "Manage Lists",
+ headerBackTitle: "Back",
+ headerTransparent: true,
+ presentation: "modal",
+ }}
+ />
+ <Stack.Screen
+ name="bookmarks/[slug]/info"
+ options={{
+ headerBackTitle: "Back",
+ headerTransparent: true,
+ presentation: "modal",
+ }}
+ />
+ <Stack.Screen
+ name="lists/new"
+ options={{
+ headerTitle: "New List",
+ headerBackTitle: "Back",
+ headerTransparent: true,
+ presentation: "modal",
+ }}
+ />
+ <Stack.Screen
name="archive"
options={{
headerTitle: "",
@@ -64,6 +107,8 @@ export default function Dashboard() {
headerBackTitle: "",
headerTransparent: true,
headerShown: false,
+ animation: "fade_from_bottom",
+ animationDuration: 100,
}}
/>
<Stack.Screen