From 007c893de107c2ecbf2188d618196075f19c8f5a Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Tue, 8 Sep 2026 19:30:03 +0300 Subject: [PATCH] APP-3049: Fix scrolling in oversized Android sheets (#11693) --- modules/bottom-sheet/src/BottomSheetNativeComponent.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/bottom-sheet/src/BottomSheetNativeComponent.tsx b/modules/bottom-sheet/src/BottomSheetNativeComponent.tsx index f030633667..0d5df0a6b6 100644 --- a/modules/bottom-sheet/src/BottomSheetNativeComponent.tsx +++ b/modules/bottom-sheet/src/BottomSheetNativeComponent.tsx @@ -182,6 +182,11 @@ function BottomSheetNativeComponentInner({ }, maxHeight != null && {maxHeight}, Platform.OS === 'android' && { + /* + * The native canvas is sized after the first layout. Allow content + * measured without a height constraint to shrink to that canvas. + */ + flexShrink: 1, borderTopLeftRadius: cornerRadius, borderTopRightRadius: cornerRadius, overflow: 'hidden',