enabled | boolean | Enables gesture recognition. |
gesture | "pan" | "tap" | "longPress" | "drag" | GestureConfig | Gesture kind or configured gesture. |
onBegin | (event: GestureEvent) => void | Called when recognition begins. |
onStart | (event: GestureEvent) => void | Called when the gesture activates. |
onUpdate | (event: GestureEvent) => void | Called while the gesture changes. |
onEnd | (event: GestureEvent) => void | Called when it ends normally. |
onCancel | (event: GestureEvent) => void | Called when recognition is cancelled. |
onFinalize | (event: GestureEvent) => void | Called after completion or cancellation. |
style | StyleProperties | Layout and appearance values. |
children | ReactNode | Subtree receiving gesture handling. |
key | string | number | React key for dynamic detectors. |
class | string | Registered style name for this node only. |