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.
InterceptingGestureDetector
1 parent d77d1f7 commit 6a6dc33Copy full SHA for 6a6dc33
apps/basic-example/src/Text.tsx
@@ -12,21 +12,21 @@ import { COLORS } from './colors';
12
13
function NativeDetectorExample() {
14
const tapAll = useTapGesture({
15
- onStart: () => {
+ onActivate: () => {
16
'worklet';
17
console.log('Tapped on text!');
18
},
19
});
20
21
const tapFirstPart = useTapGesture({
22
23
24
console.log('Tapped on first part!');
25
26
27
28
const tapSecondPart = useTapGesture({
29
30
31
console.log('Tapped on second part!');
32
0 commit comments