onVisible property

  1. @Output('visibleChange')
Stream<bool> get onVisible

A synchronous event that fires when the visible property of the popup changes (e.g. either from false to true or true to false).

Unlike onOpen and onClose, this occurs after the event completes.

Implementation

@Output('visibleChange')
Stream<bool> get onVisible;