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 f10ba40 commit d48b159Copy full SHA for d48b159
1 file changed
apps/basic-example/src/NativeDetector.tsx
@@ -17,7 +17,7 @@ export default function App() {
17
}
18
);
19
20
- const tap = useGesture('PanGestureHandler', {
+ const gesture = useGesture('PanGestureHandler', {
21
onGestureHandlerAnimatedEvent: event,
22
onGestureHandlerEvent: (e: any) =>
23
console.log('onGestureHandlerEvent', e.nativeEvent),
@@ -34,7 +34,7 @@ export default function App() {
34
/>
35
36
{visible && (
37
- <NativeDetector gesture={tap}>
+ <NativeDetector gesture={gesture}>
38
<Animated.View
39
style={[
40
{
0 commit comments