onTapUp property
getter/setter pair
A pointer has stopped contacting the screen at a particular location, which is recognized as a tap of a primary button.
This triggers on the up event, if the recognizer wins the arena with it or has previously won.
The position of the pointer is provided in the callback's details
argument, which is a TapDragUpDetails object.
The number of consecutive taps, and the keys that were pressed on tap down
are also provided in the callback's details
argument.
See also:
- kPrimaryButton, the button this callback responds to.
- TapDragUpDetails, which is passed as an argument to this callback.
Implementation
GestureTapDragUpCallback? onTapUp;