From 05ef3b9354003141e90cc58de4fd1330d8e37039 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 11 Dec 2024 14:05:43 -0600 Subject: [PATCH] Fix layout, overflowing FAB buttons --- src/screens/Profile/ProfileFeed/index.tsx | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/screens/Profile/ProfileFeed/index.tsx b/src/screens/Profile/ProfileFeed/index.tsx index 32eed418cf..2cdd33a0b3 100644 --- a/src/screens/Profile/ProfileFeed/index.tsx +++ b/src/screens/Profile/ProfileFeed/index.tsx @@ -1,5 +1,5 @@ import React, {useCallback, useMemo} from 'react' -import {StyleSheet, View} from 'react-native' +import {Dimensions, StyleSheet, View} from 'react-native' import {useAnimatedRef} from 'react-native-reanimated' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -93,9 +93,7 @@ export function ProfileFeedScreen(props: Props) { return resolvedUri ? ( - - - + ) : ( @@ -162,7 +160,12 @@ export function ProfileFeedScreenInner({ }, [_]) return ( - <> + @@ -201,7 +204,7 @@ export function ProfileFeedScreenInner({ accessibilityHint="" /> )} - + ) }