xInkWell method

Widget xInkWell (
  1. {BorderRadius borderRadius,
  2. bool autofocus = false,
  3. bool canRequestFocus = true,
  4. ShapeBorder customBorder,
  5. bool enableFeedback = true,
  6. bool excludeFromSemantics = false,
  7. Color focusColor,
  8. FocusNode focusNode,
  9. Color highlightColor,
  10. Color hoverColor,
  11. Key key,
  12. void onDoubleTap(
      ),
    1. void onFocusChange(
      1. bool
      ),
    2. void onHighlightChanged(
      1. bool
      ),
    3. void onHover(
      1. bool
      ),
    4. void onLongPress(
        ),
      1. void onTap(
          ),
        1. void onTapCancel(
            ),
          1. void onTapDown(
            1. TapDownDetails
            ),
          2. Color splashColor,
          3. double radius,
          4. InteractiveInkFeatureFactory splashFactory}
          )

          Implementation

          Widget xInkWell(
              {BorderRadius borderRadius,
              bool autofocus = false,
              bool canRequestFocus = true,
              ShapeBorder customBorder,
              bool enableFeedback = true,
              bool excludeFromSemantics = false,
              Color focusColor,
              FocusNode focusNode,
              Color highlightColor,
              Color hoverColor,
              Key key,
              void Function() onDoubleTap,
              void Function(bool) onFocusChange,
              void Function(bool) onHighlightChanged,
              void Function(bool) onHover,
              void Function() onLongPress,
              void Function() onTap,
              void Function() onTapCancel,
              void Function(TapDownDetails) onTapDown,
              Color splashColor,
              double radius,
              InteractiveInkFeatureFactory splashFactory}) {
            return InkWell(
              borderRadius: borderRadius,
              autofocus: autofocus,
              canRequestFocus: canRequestFocus,
              customBorder: customBorder,
              enableFeedback: enableFeedback,
              excludeFromSemantics: excludeFromSemantics,
              focusColor: focusColor,
              focusNode: focusNode,
              highlightColor: highlightColor,
              hoverColor: hoverColor,
              key: key,
              onDoubleTap: onDoubleTap,
              onFocusChange: onFocusChange,
              onHighlightChanged: onHighlightChanged,
              onHover: onHover,
              onLongPress: onLongPress,
              onTap: onTap,
              onTapCancel: onTapCancel,
              onTapDown: onTapDown,
              radius: radius,
              splashColor: splashColor,
              splashFactory: splashFactory,
              child: this,
            );
          }