rippleTap method
Widget
rippleTap({
- VoidCallback? onTap,
- Color color = const Color(0x33FFFFFF),
- Duration duration = const Duration(milliseconds: 600),
- bool haptics = false,
Expanding ripple from the touch point. See RippleTap.
Implementation
Widget rippleTap({
VoidCallback? onTap,
Color color = const Color(0x33FFFFFF),
Duration duration = const Duration(milliseconds: 600),
bool haptics = false,
}) => RippleTap(
onTap: onTap,
color: color,
duration: duration,
haptics: haptics,
child: this,
);