Persist taps in the dialog scrollview (#5701)

This commit is contained in:
Hailey
2024-10-10 19:49:21 -07:00
committed by GitHub
parent 34d3e2b127
commit 5da0bcaec2
+2 -1
View File
@@ -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>
)