about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/Dialog/index.tsx3
1 files changed, 2 insertions, 1 deletions
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<ScrollView, DialogInnerProps>(
         bounces={nativeSnapPoint === BottomSheetSnapPoint.Full}
         bottomOffset={30}
         scrollEventThrottle={50}
-        onScroll={isAndroid ? onScroll : undefined}>
+        onScroll={isAndroid ? onScroll : undefined}
+        keyboardShouldPersistTaps="handled">
         {children}
       </KeyboardAwareScrollView>
     )