OutsideRawGestureDetector constructor

const OutsideRawGestureDetector({
  1. Key? key,
  2. Widget? child,
  3. Map<Type, GestureRecognizerFactory<GestureRecognizer>> gestures = const <Type, GestureRecognizerFactory>{},
  4. OutsideHitTestBehavior? behavior,
  5. bool excludeFromSemantics = false,
  6. bool externListener = false,
  7. SemanticsGestureDelegate? semantics,
})

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 OutsideRawGestureDetector({
  super.key,
  this.child,
  this.gestures = const <Type, GestureRecognizerFactory>{},
  this.behavior,
  this.excludeFromSemantics = false,
  this.externListener = false,
  this.semantics,
});