RawGestureDetectorHitTestWithoutSizeLimit constructor

const RawGestureDetectorHitTestWithoutSizeLimit({
  1. Key? key,
  2. Widget? child,
  3. Map<Type, GestureRecognizerFactory<GestureRecognizer>> gestures = const <Type, GestureRecognizerFactory>{},
  4. HitTestBehavior? behavior,
  5. bool excludeFromSemantics = false,
  6. SemanticsGestureDelegate? semantics,
  7. EdgeInsets extraHitTestArea = EdgeInsets.zero,
  8. Color? debugHitTestAreaColor,
})

Creates a widget that detects gestures.

Gesture detectors can contribute semantic information to the tree that is used by assistive technology. The behavior can be configured by semantics, or disabled with excludeFromSemantics.

Implementation

const RawGestureDetectorHitTestWithoutSizeLimit({
  Key? key,
  this.child,
  this.gestures = const <Type, GestureRecognizerFactory>{},
  this.behavior,
  this.excludeFromSemantics = false,
  this.semantics,
  this.extraHitTestArea = EdgeInsets.zero,
  this.debugHitTestAreaColor,
}) : super(key: key);