CaptureGestures.all constructor

const CaptureGestures.all({
  1. Key? key,
  2. Widget? child,
  3. bool capturingTap = true,
  4. bool capturingDoubleTap = true,
  5. bool capturingLongPress = true,
  6. bool capturingVerticalDrag = true,
  7. bool capturingHorizontalDrag = true,
  8. bool capturingForcePress = true,
  9. bool display = false,
})

Captures all gestures.

Implementation

const CaptureGestures.all({
  Key? key,
  this.child,
  this.capturingTap = true,
  this.capturingDoubleTap = true,
  this.capturingLongPress = true,
  this.capturingVerticalDrag = true,
  this.capturingHorizontalDrag = true,
  this.capturingForcePress = true,
  this.display = false,
}) : super(key: key);