CustomGestureDetector constructor
const
CustomGestureDetector({
- Key? key,
- Widget? child,
- dynamic onTapDown()?,
- dynamic onTapUp()?,
- dynamic onTap()?,
- dynamic onTapCancel()?,
- dynamic onSecondaryTap()?,
- dynamic onSecondaryTapDown()?,
- dynamic onSecondaryTapUp()?,
- dynamic onSecondaryTapCancel()?,
- dynamic onTertiaryTapDown()?,
- BorderRadius? borderRadius,
- dynamic onTertiaryTapUp()?,
- dynamic onTertiaryTapCancel()?,
- dynamic onDoubleTapDown()?,
- dynamic onDoubleTap()?,
- dynamic onDoubleTapCancel()?,
- dynamic onLongPress()?,
- Color? hoverColor,
- Color? splashColor,
- MaterialStateProperty<
Color> ? overlayColor, - Color? focusColor,
- double? borderRadiusDouble,
Implementation
const CustomGestureDetector({
super.key,
this.child,
this.onTapDown,
this.onTapUp,
this.onTap,
this.onTapCancel,
this.onSecondaryTap,
this.onSecondaryTapDown,
this.onSecondaryTapUp,
this.onSecondaryTapCancel,
this.onTertiaryTapDown,
this.borderRadius,
this.onTertiaryTapUp,
this.onTertiaryTapCancel,
this.onDoubleTapDown,
this.onDoubleTap,
this.onDoubleTapCancel,
// this.onLongPressDown,
// this.onLongPressCancel,
this.onLongPress,
this.hoverColor,
this.splashColor,
this.overlayColor,
this.focusColor, this.borderRadiusDouble,
// this.borderRadiusEdge,
// this.onLongPressStart,
// this.onLongPressMoveUpdate,
// this.onLongPressUp,
// this.onLongPressEnd,
// this.onSecondaryLongPressDown,
});