CustomInkWell constructor
const
CustomInkWell({
- Key? key,
- EdgeInsetsGeometry childPadding = const EdgeInsets.all(0),
- bool isSelected = false,
- MouseCursor? mouseCursor,
- required int clickInterval,
- double borderRadius = 8.0,
- Color? backgroundColor,
- Color? selectedColor,
- Color? hoverColor,
- Color? splashColor,
- Color? highlightColor,
- required VoidCallback? onTap,
- required VoidCallback? onDoubleTap,
- void onSecondaryTapDown()?,
- required Widget child,
Implementation
const CustomInkWell({
super.key,
this.childPadding = const EdgeInsets.all(0),
this.isSelected = false,
this.mouseCursor,
required this.clickInterval,
this.borderRadius = 8.0,
this.backgroundColor,
this.selectedColor,
this.hoverColor,
this.splashColor,
this.highlightColor,
required this.onTap,
required this.onDoubleTap,
this.onSecondaryTapDown,
required this.child,
});