mattermost-mobile/patches/@gorhom+bottom-sheet+4.6.4.patch
Elias Nahum 7cb2ee75b3
Fix bottomSheet bottom insets (#8331)
* Fix bottomSheet bottom insets

* fix search team picker on android

* ux review

* fix footer padding for message priority modal on iPad
2024-11-29 12:50:09 +08:00

17 lines
767 B
Diff

diff --git a/node_modules/@gorhom/bottom-sheet/src/components/bottomSheetContainer/BottomSheetContainer.tsx b/node_modules/@gorhom/bottom-sheet/src/components/bottomSheetContainer/BottomSheetContainer.tsx
index 72fe2cb..abac348 100644
--- a/node_modules/@gorhom/bottom-sheet/src/components/bottomSheetContainer/BottomSheetContainer.tsx
+++ b/node_modules/@gorhom/bottom-sheet/src/components/bottomSheetContainer/BottomSheetContainer.tsx
@@ -30,10 +30,10 @@ function BottomSheetContainerComponent({
{
top: topInset,
bottom: bottomInset,
- overflow: detached ? 'visible' : 'hidden',
+ overflow: 'visible',
},
],
- [style, detached, topInset, bottomInset]
+ [style, topInset, bottomInset]
);
//#endregion