Add custom feed liked by screen

This commit is contained in:
Paul Frazee 2023-05-17 22:12:14 -05:00
parent 998879d6d6
commit a2c89b47a1
6 changed files with 51 additions and 73 deletions

View file

@ -40,7 +40,8 @@ import {SettingsScreen} from './view/screens/Settings'
import {ProfileScreen} from './view/screens/Profile'
import {ProfileFollowersScreen} from './view/screens/ProfileFollowers'
import {ProfileFollowsScreen} from './view/screens/ProfileFollows'
import {ProfileCustomFeed} from './view/screens/ProfileCustomFeed'
import {CustomFeedScreen} from './view/screens/CustomFeed'
import {CustomFeedLikedByScreen} from './view/screens/CustomFeedLikedBy'
import {ProfileListScreen} from './view/screens/ProfileList'
import {PostThreadScreen} from './view/screens/PostThread'
import {PostLikedByScreen} from './view/screens/PostLikedBy'
@ -126,7 +127,6 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) {
title: title(`People followed by @${route.params.name}`),
})}
/>
<Stack.Screen name="ProfileCustomFeed" component={ProfileCustomFeed} />
<Stack.Screen
name="ProfileList"
component={ProfileListScreen}
@ -147,6 +147,11 @@ 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="CustomFeedLikedBy"
component={CustomFeedLikedByScreen}
/>
<Stack.Screen
name="Debug"
component={DebugScreen}