InkWell constructor
const
InkWell({
- Key? key,
- required Widget child,
- GestureTapCallback? onTap,
- GestureTapCallback? onDoubleTap,
- GestureLongPressCallback? onLongPress,
- GestureTapDownCallback? onTapDown,
- GestureTapCancelCallback? onTapCancel,
- Color? splashColor,
- Color? highlightColor,
- BorderRadius? borderRadius,
- ShapeBorder? customBorder,
- bool enableFeedback = true,
- bool excludeFromSemantics = false,
Implementation
const InkWell({
super.key,
required this.child,
this.onTap,
this.onDoubleTap,
this.onLongPress,
this.onTapDown,
this.onTapCancel,
this.splashColor,
this.highlightColor,
this.borderRadius,
this.customBorder,
this.enableFeedback = true,
this.excludeFromSemantics = false,
});