shieldClick property

  1. @override
Stream<void> get shieldClick
override

A stream of click events on the modal.

Only is active if preventInteraction is true.

Implementation

@override
Stream<void> get shieldClick => _resolvedOverlayRef.onPanePressed
    .where((MouseEvent e) => e.eventPhase == Event.AT_TARGET);