toTappableText method

Widget toTappableText(
  1. void onTap(), [
  2. Size? detectionBorder
])

Implementation

Widget toTappableText(
  void Function() onTap, [
  Size? detectionBorder,
]) {
  return WTapDetector(
    detectionBorder: detectionBorder ?? Size.square(16.sc),
    onTap: onTap,
    child: this,
  );
}