Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3492889
D6137.id20493.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
966 B
Referenced Files
None
Subscribers
None
D6137.id20493.diff
View Options
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 (
- <SafeAreaView style={styles.drawerContent} edges={safeAreaEdges}>
+ <SafeAreaView style={styles.drawerContent} edges={safeAreaEdgesOSDependent}>
<FlatList data={drawerItemsData} renderItem={renderItem} />
</SafeAreaView>
);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Dec 20, 1:51 AM (21 h, 13 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2679576
Default Alt Text
D6137.id20493.diff (966 B)
Attached To
Mode
D6137: [native] Fix android bottom navigation bar ovelapping with drawer content
Attached
Detach File
Event Timeline
Log In to Comment