diff --git a/native/navigation/community-drawer-content.react.js b/native/navigation/community-drawer-content.react.js --- a/native/navigation/community-drawer-content.react.js +++ b/native/navigation/community-drawer-content.react.js @@ -1,7 +1,7 @@ // @flow import * as React from 'react'; -import { FlatList } from 'react-native'; +import { FlatList, Platform } from 'react-native'; import { SafeAreaView } from 'react-native-safe-area-context'; import { useSelector } from 'react-redux'; @@ -79,8 +79,11 @@ [childThreadInfosMap, communitiesSuffixed, labelStyles], ); + const safeAreaEdgesOSDependent = + Platform.OS === 'android' ? [...safeAreaEdges, 'bottom'] : safeAreaEdges; + return ( - + );