about summary refs log tree commit diff
path: root/src/Navigation.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-05-17 23:33:59 -0500
committerPaul Frazee <pfrazee@gmail.com>2023-05-17 23:33:59 -0500
commit5a20e0fafa2bdbfd57a69da42448a687c7d812c1 (patch)
tree3dd5a8074970f16a94561f7c6624cc051645d1bd /src/Navigation.tsx
parent129fc42e95605617e4dd6509a0458a2b66527ad0 (diff)
downloadvoidsky-5a20e0fafa2bdbfd57a69da42448a687c7d812c1.tar.zst
Add web titles
Diffstat (limited to 'src/Navigation.tsx')
-rw-r--r--src/Navigation.tsx17
1 files changed, 15 insertions, 2 deletions
diff --git a/src/Navigation.tsx b/src/Navigation.tsx
index d84167d63..46189c5f0 100644
--- a/src/Navigation.tsx
+++ b/src/Navigation.tsx
@@ -147,10 +147,19 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) {
         component={PostRepostedByScreen}
         options={({route}) => ({title: title(`Post by @${route.params.name}`)})}
       />
-      <Stack.Screen name="CustomFeed" component={CustomFeedScreen} />
+      <Stack.Screen
+        name="CustomFeed"
+        component={CustomFeedScreen}
+        options={({route}) => ({
+          title: title(`Custom feed by @${route.params.name}`),
+        })}
+      />
       <Stack.Screen
         name="CustomFeedLikedBy"
         component={CustomFeedLikedByScreen}
+        options={({route}) => ({
+          title: title(`Custom feed by @${route.params.name}`),
+        })}
       />
       <Stack.Screen
         name="Debug"
@@ -192,7 +201,11 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) {
         component={AppPasswords}
         options={{title: title('App Passwords')}}
       />
-      <Stack.Screen name="SavedFeeds" component={SavedFeeds} />
+      <Stack.Screen
+        name="SavedFeeds"
+        component={SavedFeeds}
+        options={{title: title('Edit My Feeds')}}
+      />
     </>
   )
 }