inkWell method

InkWell inkWell({
  1. Key? key,
  2. GestureTapCallback? onTap,
  3. GestureTapCallback? onDoubleTap,
  4. GestureLongPressCallback? onLongPress,
  5. GestureTapDownCallback? onTapDown,
  6. GestureTapUpCallback? onTapUp,
  7. GestureTapCallback? onTapCancel,
  8. ValueChanged<bool>? onHighlightChanged,
  9. ValueChanged<bool>? onHover,
  10. MouseCursor? mouseCursor,
  11. Color? focusColor,
  12. Color? hoverColor,
  13. Color? highlightColor,
  14. MaterialStateProperty<Color?>? overlayColor,
  15. Color? splashColor,
  16. InteractiveInkFeatureFactory? splashFactory,
  17. double? radius,
  18. BorderRadius? borderRadius,
  19. ShapeBorder? customBorder,
  20. bool? enableFeedback = true,
  21. bool excludeFromSemantics = false,
  22. FocusNode? focusNode,
  23. bool canRequestFocus = true,
  24. ValueChanged<bool>? onFocusChange,
  25. bool autofocus = false,
  26. MaterialStatesController? statesController,
})

see InkWell

Implementation

InkWell inkWell({
  Key? key,
  GestureTapCallback? onTap,
  GestureTapCallback? onDoubleTap,
  GestureLongPressCallback? onLongPress,
  GestureTapDownCallback? onTapDown,
  GestureTapUpCallback? onTapUp,
  GestureTapCallback? onTapCancel,
  ValueChanged<bool>? onHighlightChanged,
  ValueChanged<bool>? onHover,
  MouseCursor? mouseCursor,
  Color? focusColor,
  Color? hoverColor,
  Color? highlightColor,
  MaterialStateProperty<Color?>? overlayColor,
  Color? splashColor,
  InteractiveInkFeatureFactory? splashFactory,
  double? radius,
  BorderRadius? borderRadius,
  ShapeBorder? customBorder,
  bool? enableFeedback = true,
  bool excludeFromSemantics = false,
  FocusNode? focusNode,
  bool canRequestFocus = true,
  ValueChanged<bool>? onFocusChange,
  bool autofocus = false,
  MaterialStatesController? statesController,
}) =>
    InkWell(
      key: key,
      onTap: onTap,
      onDoubleTap: onDoubleTap,
      onLongPress: onLongPress,
      onTapDown: onTapDown,
      onTapUp: onTapUp,
      onTapCancel: onTapCancel,
      onHighlightChanged: onHighlightChanged,
      onHover: onHover,
      mouseCursor: mouseCursor,
      focusColor: focusColor,
      hoverColor: hoverColor,
      highlightColor: highlightColor,
      overlayColor: overlayColor,
      splashColor: splashColor,
      splashFactory: splashFactory,
      radius: radius,
      borderRadius: borderRadius,
      customBorder: customBorder,
      enableFeedback: enableFeedback,
      excludeFromSemantics: excludeFromSemantics,
      focusNode: focusNode,
      canRequestFocus: canRequestFocus,
      onFocusChange: onFocusChange,
      autofocus: autofocus,
      statesController: statesController,
      child: this,
    );