demo 如下:Text('点我,触发事件') .onClick(() => { console.log('-----onClick') }) .gesture( PanGesture(this.panOption) .onActionStart((event: GestureEvent) => { console.info(' Pan start') }) ) .gesture( PinchGesture({ fingers: 3 }) .onActionStart((event: GestureEvent) => { console.info(' Pinch start') }) ) .gesture( TapGesture({ count: 2 }) .onA
demo 如下: