consumeOutsideTaps property

bool consumeOutsideTaps

Whether or not the tap down even that triggers a call to onTapOutside will continue on to participate in the gesture arena.

If any RenderTapRegion in the same group has consumeOutsideTaps set to true, then the tap down event will be consumed before other gesture recognizers can process them.

Implementation

bool get consumeOutsideTaps => _consumeOutsideTaps;
void consumeOutsideTaps=(bool value)

Implementation

set consumeOutsideTaps(bool value) {
  if (_consumeOutsideTaps != value) {
    _consumeOutsideTaps = value;
    markNeedsLayout();
  }
}