onTap method

Widget onTap(
  1. VoidCallback onTap, {
  2. 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,
  );
}