InkWellStacked constructor

const InkWellStacked({
  1. Key? key,
  2. Widget? child,
  3. GestureTapCallback? onTap,
  4. GestureTapDownCallback? onTapDown,
  5. GestureTapCallback? onTapCancel,
  6. GestureTapCallback? onDoubleTap,
  7. GestureLongPressCallback? onLongPress,
  8. ValueChanged<bool>? onHighlightChanged,
  9. ValueChanged<bool>? onHover,
  10. bool containedInkWell = false,
  11. BoxShape highlightShape = BoxShape.circle,
  12. double? radius,
  13. BorderRadius? borderRadius,
  14. ShapeBorder? customBorder,
  15. Color? focusColor,
  16. Color? hoverColor,
  17. Color? highlightColor,
  18. Color? splashColor,
  19. InteractiveInkFeatureFactory? splashFactory,
  20. bool enableFeedback = true,
  21. bool excludeFromSemantics = false,
  22. FocusNode? focusNode,
  23. bool canRequestFocus = true,
  24. ValueChanged<bool>? onFocusChange,
  25. bool autofocus = false,
})

Implementation

const InkWellStacked({
  super.key,
  this.child,
  this.onTap,
  this.onTapDown,
  this.onTapCancel,
  this.onDoubleTap,
  this.onLongPress,
  this.onHighlightChanged,
  this.onHover,
  this.containedInkWell = false,
  this.highlightShape = BoxShape.circle,
  this.radius,
  this.borderRadius,
  this.customBorder,
  this.focusColor,
  this.hoverColor,
  this.highlightColor,
  this.splashColor,
  this.splashFactory,
  this.enableFeedback = true,
  this.excludeFromSemantics = false,
  this.focusNode,
  this.canRequestFocus = true,
  this.onFocusChange,
  this.autofocus = false,
});