Merge pull request #6302 from BlueWallet/drawerlistscroll

FIX: Unable to scroll wallets list
This commit is contained in:
GLaDOS 2024-03-21 15:55:12 +00:00 committed by GitHub
commit b051fa662c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -141,7 +141,7 @@ const DrawerList: React.FC<DrawerListProps> = memo(({ navigation }) => {
return ( return (
<DrawerContentScrollView <DrawerContentScrollView
contentContainerStyle={[styles.root, stylesHook.root]} contentContainerStyle={stylesHook.root}
contentInsetAdjustmentBehavior="automatic" contentInsetAdjustmentBehavior="automatic"
automaticallyAdjustContentInsets={true} automaticallyAdjustContentInsets={true}
showsHorizontalScrollIndicator={false} showsHorizontalScrollIndicator={false}
@ -164,9 +164,3 @@ const DrawerList: React.FC<DrawerListProps> = memo(({ navigation }) => {
}); });
export default DrawerList; export default DrawerList;
const styles = StyleSheet.create({
root: {
flex: 1,
},
});