isShowing property

bool get isShowing

Whether the morph overlay should currently be visible.

true from the moment open is called until the spring has fully settled back at 0.0 after close.

Implementation

bool get isShowing =>
    _animationController.value > 0.001 || (_isClosing && !_hasSettled);