inkWell static method
WxListTileBuilder
inkWell({
- Color? hoverColor,
- Color? highlightColor,
- Color? splashColor,
- InteractiveInkFeatureFactory? splashFactory,
- BorderRadius? borderRadius,
Implementation
static WxListTileBuilder inkWell({
Color? hoverColor,
Color? highlightColor,
Color? splashColor,
InteractiveInkFeatureFactory? splashFactory,
BorderRadius? borderRadius,
}) {
return (context, widget) {
if (widget.onTap != null) {
return InkWell(
hoverColor: hoverColor,
highlightColor: highlightColor,
splashColor: splashColor,
splashFactory: splashFactory,
borderRadius: borderRadius,
onTap: widget.onTap,
child: widget.child,
);
}
return widget.child;
};
}