FlyGestureDetector constructor

FlyGestureDetector({
  1. Key? key,
  2. Widget? child,
  3. List<Widget>? children,
  4. AlignmentGeometry? alignment,
  5. EdgeInsetsGeometry? padding,
  6. EdgeInsetsGeometry? margin,
  7. Decoration? decoration,
  8. Decoration? foregroundDecoration,
  9. double? width,
  10. double? height,
  11. BoxConstraints? constraints,
  12. Matrix4? transform,
  13. AlignmentGeometry? transformAlignment,
  14. Clip? clipBehavior,
  15. FlyStyle flyStyle = const FlyStyle(),
  16. GestureTapDownCallback? onTapDown,
  17. GestureTapUpCallback? onTapUp,
  18. GestureTapCancelCallback? onTapCancel,
  19. GestureTapCallback? onTap,
  20. GestureTapCallback? onDoubleTap,
  21. GestureLongPressCallback? onLongPress,
  22. GestureLongPressStartCallback? onLongPressStart,
  23. GestureLongPressEndCallback? onLongPressEnd,
  24. GestureLongPressMoveUpdateCallback? onLongPressMoveUpdate,
  25. GestureLongPressUpCallback? onLongPressUp,
  26. VoidCallback? onLongPressCancel,
  27. GestureTapCallback? onSecondaryTap,
  28. GestureTapDownCallback? onSecondaryTapDown,
  29. GestureTapUpCallback? onSecondaryTapUp,
  30. GestureTapCancelCallback? onSecondaryTapCancel,
  31. GestureTapDownCallback? onTertiaryTapDown,
  32. GestureTapUpCallback? onTertiaryTapUp,
  33. GestureTapCancelCallback? onTertiaryTapCancel,
  34. GestureDragDownCallback? onPanDown,
  35. GestureDragStartCallback? onPanStart,
  36. GestureDragUpdateCallback? onPanUpdate,
  37. GestureDragEndCallback? onPanEnd,
  38. GestureDragCancelCallback? onPanCancel,
  39. GestureScaleStartCallback? onScaleStart,
  40. GestureScaleUpdateCallback? onScaleUpdate,
  41. GestureScaleEndCallback? onScaleEnd,
  42. GestureForcePressStartCallback? onForcePressStart,
  43. GestureForcePressPeakCallback? onForcePressPeak,
  44. GestureForcePressUpdateCallback? onForcePressUpdate,
  45. GestureForcePressEndCallback? onForcePressEnd,
  46. PointerDownEventListener? onPointerDown,
  47. PointerMoveEventListener? onPointerMove,
  48. PointerUpEventListener? onPointerUp,
  49. PointerCancelEventListener? onPointerCancel,
  50. HitTestBehavior? behavior,
  51. bool excludeFromSemantics = false,
  52. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
})

Implementation

FlyGestureDetector({
  super.key,
  super.child,
  super.children,
  super.alignment,
  super.padding,
  super.margin,
  super.decoration,
  super.foregroundDecoration,
  super.width,
  super.height,
  super.constraints,
  super.transform,
  super.transformAlignment,
  super.clipBehavior,
  super.flyStyle,
  this.onTapDown,
  this.onTapUp,
  this.onTapCancel,
  this.onTap,
  this.onDoubleTap,
  this.onLongPress,
  this.onLongPressStart,
  this.onLongPressEnd,
  this.onLongPressMoveUpdate,
  this.onLongPressUp,
  this.onLongPressCancel,
  this.onSecondaryTap,
  this.onSecondaryTapDown,
  this.onSecondaryTapUp,
  this.onSecondaryTapCancel,
  this.onTertiaryTapDown,
  this.onTertiaryTapUp,
  this.onTertiaryTapCancel,
  this.onPanDown,
  this.onPanStart,
  this.onPanUpdate,
  this.onPanEnd,
  this.onPanCancel,
  this.onScaleStart,
  this.onScaleUpdate,
  this.onScaleEnd,
  this.onForcePressStart,
  this.onForcePressPeak,
  this.onForcePressUpdate,
  this.onForcePressEnd,
  this.onPointerDown,
  this.onPointerMove,
  this.onPointerUp,
  this.onPointerCancel,
  this.behavior,
  this.excludeFromSemantics = false,
  this.dragStartBehavior = DragStartBehavior.start,
});