diff --git a/src/screens/Feeds/VibeScreen.tsx b/src/screens/Feeds/VibeScreen.tsx index 39d6605784..737d374cd6 100644 --- a/src/screens/Feeds/VibeScreen.tsx +++ b/src/screens/Feeds/VibeScreen.tsx @@ -453,7 +453,6 @@ function Overlay({ const {_} = useLingui() const t = useTheme() const navigation = useNavigation() - // const {status} = useEvent(player, 'statusChange', {status: player.status}) const seekingAnimationSV = useSharedValue(0) const pushToProfile = useNonReactiveCallback(() => { @@ -583,7 +582,18 @@ function Overlay({ * Magic number that matches the Scrubber height */ function ScrubberPlaceholder() { - return + const {bottom} = useSafeAreaInsets() + return ( + + ) } function Scrubber({ @@ -732,14 +742,19 @@ function Scrubber({ a.pt_lg, a.justify_end, { - height: tokens.space.md, - paddingBottom: insets.bottom + 12, + paddingBottom: insets.bottom + tokens.space.md, + height: + // bottom padding + insets.bottom + + tokens.space.md + + // actual height + tokens.space.md + + // top padding + tokens.space.lg, }, a.z_10, ]}> - +