xGestureTouchContainer method
Widget
xGestureTouchContainer(
- bool enable, {
- GestureTapCallback? onTap,
- GestureCancelCallback? onLongTap,
Implementation
Widget xGestureTouchContainer(bool enable,
{GestureTapCallback? onTap, GestureCancelCallback? onLongTap}) {
return enable
? GestureDetector(
onTap: onTap,
onLongPress: onLongTap,
child: this,
)
: this;
}