EasyInkTap constructor
const
EasyInkTap({
- Key? key,
- void onTap()?,
- void onDoubleTap()?,
- void onLongPress()?,
- Color? backgroundColor,
- BorderRadius? borderRadius,
- Color? splashColor,
- Color? highlightColor,
- Color? hoverColor,
- EdgeInsets? padding,
- double feedbackDuration = 0.5,
- required Widget child,
Implementation
const EasyInkTap(
{Key? key,
this.onTap,
this.onDoubleTap,
this.onLongPress,
this.backgroundColor,
this.borderRadius,
this.splashColor,
this.highlightColor,
this.hoverColor,
this.padding,
this.feedbackDuration = 0.5,
required this.child})
: super(key: key);