diff options
author | Ansh Nanda <anshnanda10@gmail.com> | 2023-08-28 13:37:44 -0700 |
---|---|---|
committer | Ansh Nanda <anshnanda10@gmail.com> | 2023-08-28 13:37:44 -0700 |
commit | edfd326069319c80f4825eb33a74295ccf667d71 (patch) | |
tree | ec9a697d0dfb9b98d5b9bf5aec84f15fe5c921e6 /src/Navigation.tsx | |
parent | 84e065667ad8479be143d8f613005a857070c0ca (diff) | |
download | voidsky-edfd326069319c80f4825eb33a74295ccf667d71.tar.zst |
move onboarding to screens
Diffstat (limited to 'src/Navigation.tsx')
-rw-r--r-- | src/Navigation.tsx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Navigation.tsx b/src/Navigation.tsx index 48bab182d..6ea92e1d4 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -67,6 +67,8 @@ import {getRoutingInstrumentation} from 'lib/sentry' import {bskyTitle} from 'lib/strings/headings' import {JSX} from 'react/jsx-runtime' import {timeout} from 'lib/async/timeout' +import {Welcome} from 'view/com/auth/onboarding/Welcome' +import {RecommendedFeeds} from 'view/com/auth/onboarding/RecommendedFeeds' const navigationRef = createNavigationContainerRef<AllNavigatorParams>() @@ -219,6 +221,18 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) { component={SavedFeeds} options={{title: title('Edit My Feeds')}} /> + <Stack.Group + screenOptions={{ + animation: 'slide_from_bottom', + presentation: 'modal', + }}> + <Stack.Screen + name="Welcome" + component={Welcome} + options={{title: title('Welcome')}} + /> + <Stack.Screen name="RecommendedFeeds" component={RecommendedFeeds} /> + </Stack.Group> </> ) } @@ -254,6 +268,7 @@ function TabsNavigator() { function HomeTabNavigator() { const contentStyle = useColorSchemeStyle(styles.bgLight, styles.bgDark) + return ( <HomeTab.Navigator screenOptions={{ |