diff options
author | Hailey <me@haileyok.com> | 2024-10-10 19:49:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-10 19:49:21 -0700 |
commit | 5da0bcaec27e33efd210fc2e21da564ee8d6005b (patch) | |
tree | a1cbae1174c4e5570c72917e9d168500482ea575 /src/components/Dialog | |
parent | 34d3e2b1270656d73f36d468c161cb7909a9d4c2 (diff) | |
download | voidsky-5da0bcaec27e33efd210fc2e21da564ee8d6005b.tar.zst |
Persist taps in the dialog scrollview (#5701)
Diffstat (limited to 'src/components/Dialog')
-rw-r--r-- | src/components/Dialog/index.tsx | 3 |
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> ) |