We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f38462e commit 1c1602bCopy full SHA for 1c1602b
1 file changed
packages/react-native/Libraries/Components/Pressable/Pressable.js
@@ -120,8 +120,10 @@ type PressableBaseProps = Readonly<{
120
onPressOut?: ?(event: GestureResponderEvent) => unknown,
121
122
/**
123
- * When true, prevents native ancestor views (UIKit responder chain) from
124
- * receiving touch events when this Pressable handles a press.
+ * When true, prevents native ancestor views from receiving any touch events
+ * that begin on this Pressable, including pan gestures. Suppression is
125
+ * unconditional (not gated on JS responder state) to avoid timing races on
126
+ * fast taps. Does not affect UIGestureRecognizer-based interactions.
127
*/
128
blockNativeResponder?: ?boolean,
129
0 commit comments