getInkWellWidget static method
Implementation
static Widget getInkWellWidget(
{required Widget child, required Function onTap}) {
return InkWell(
highlightColor: ColorsAssets.transparent,
splashColor: ColorsAssets.transparent,
focusColor: ColorsAssets.transparent,
child: child,
onTap: () {
onTap();
},
);
}