onTap method
- VoidCallback onTap, {
- double pressedScale = 0.95,
Wrap with tap gesture.
Implementation
Widget onTap(VoidCallback onTap, {double pressedScale = 0.95}) {
return _TappableWrapper(
onTap: onTap,
pressedScale: pressedScale,
child: this,
);
}