diff options
Diffstat (limited to 'src/screens/StarterPack/StarterPackLandingScreen.tsx')
-rw-r--r-- | src/screens/StarterPack/StarterPackLandingScreen.tsx | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/src/screens/StarterPack/StarterPackLandingScreen.tsx b/src/screens/StarterPack/StarterPackLandingScreen.tsx index 2d9a91969..a48fbc61c 100644 --- a/src/screens/StarterPack/StarterPackLandingScreen.tsx +++ b/src/screens/StarterPack/StarterPackLandingScreen.tsx @@ -1,5 +1,5 @@ import React from 'react' -import {Pressable, ScrollView, View} from 'react-native' +import {Pressable, View} from 'react-native' import Animated, {FadeIn, FadeOut} from 'react-native-reanimated' import { AppBskyGraphDefs, @@ -25,13 +25,13 @@ import { } from '#/state/shell/starter-pack' import {LoggedOutScreenState} from '#/view/com/auth/LoggedOut' import {formatCount} from '#/view/com/util/numeric/format' -import {CenteredView} from '#/view/com/util/Views' import {Logo} from '#/view/icons/Logo' import {atoms as a, useTheme} from '#/alf' import {Button, ButtonText} from '#/components/Button' import {useDialogControl} from '#/components/Dialog' import * as FeedCard from '#/components/FeedCard' import {useRichText} from '#/components/hooks/useRichText' +import * as Layout from '#/components/Layout' import {LinearGradientBackground} from '#/components/LinearGradientBackground' import {ListMaybePlaceholder} from '#/components/Lists' import {Default as ProfileCard} from '#/components/ProfileCard' @@ -165,10 +165,8 @@ function LandingScreenLoaded({ } return ( - <CenteredView style={a.flex_1}> - <ScrollView - style={[a.flex_1, t.atoms.bg]} - contentContainerStyle={{paddingBottom: 100}}> + <View style={[a.flex_1]}> + <Layout.Content ignoreTabletLayoutOffset> <LinearGradientBackground style={[ a.align_center, @@ -313,7 +311,7 @@ function LandingScreenLoaded({ </ButtonText> </Button> </View> - </ScrollView> + </Layout.Content> <AppClipOverlay visible={appClipOverlayVisible} setIsVisible={setAppClipOverlayVisible} @@ -358,7 +356,7 @@ function LandingScreenLoaded({ content="app-id=xyz.blueskyweb.app, app-clip-bundle-id=xyz.blueskyweb.app.AppClip, app-clip-display=card" /> )} - </CenteredView> + </View> ) } @@ -376,11 +374,8 @@ export function AppClipOverlay({ accessibilityRole="button" style={[ a.absolute, + a.inset_0, { - top: 0, - left: 0, - right: 0, - bottom: 0, backgroundColor: 'rgba(0, 0, 0, 0.95)', zIndex: 1, }, |