FIX: Unable to scroll wallets list

This commit is contained in:
Marcos Rodriguez Velez 2024-03-20 19:14:53 -04:00
parent 9daf8921cd
commit 57a74629d3
No known key found for this signature in database
GPG Key ID: 6030B2F48CCE86D7

View File

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