diff --git a/native/chat/message-reactions-modal.react.js b/native/chat/message-reactions-modal.react.js --- a/native/chat/message-reactions-modal.react.js +++ b/native/chat/message-reactions-modal.react.js @@ -4,6 +4,7 @@ import { useNavigation } from '@react-navigation/native'; import * as React from 'react'; import { View, Text, FlatList, TouchableHighlight } from 'react-native'; +import { SafeAreaView } from 'react-native-safe-area-context'; import type { MessageReactionInfo } from 'lib/selectors/chat-selectors'; import { useMessageReactionsList } from 'lib/shared/reaction-utils'; @@ -28,7 +29,8 @@ const colors = useColors(); const navigation = useNavigation(); - const safeAreaEdges = React.useMemo(() => ['top'], []); + const modalSafeAreaEdges = React.useMemo(() => ['top'], []); + const modalContainerSafeAreaEdges = React.useMemo(() => ['bottom'], []); const close = React.useCallback(() => navigation.goBack(), [navigation]); @@ -58,24 +60,26 @@ - - Reactions - - - - - + + + Reactions + + + + + + ); }