From 5da0bcaec27e33efd210fc2e21da564ee8d6005b Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 10 Oct 2024 19:49:21 -0700 Subject: Persist taps in the dialog scrollview (#5701) --- src/components/Dialog/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/components/Dialog/index.tsx') diff --git a/src/components/Dialog/index.tsx b/src/components/Dialog/index.tsx index a27271168..73e54ea21 100644 --- a/src/components/Dialog/index.tsx +++ b/src/components/Dialog/index.tsx @@ -223,7 +223,8 @@ export const ScrollableInner = React.forwardRef( bounces={nativeSnapPoint === BottomSheetSnapPoint.Full} bottomOffset={30} scrollEventThrottle={50} - onScroll={isAndroid ? onScroll : undefined}> + onScroll={isAndroid ? onScroll : undefined} + keyboardShouldPersistTaps="handled"> {children} ) -- cgit 1.4.1