$transitionPhase property

  1. @override
  2. @protected
TransitionPhase get $transitionPhase
override

The current transition phase, derived from the current WithTransitionPropsMixin.isShown value.

Do not set directly.

Implementation

@override
@protected
TransitionPhase get $transitionPhase =>
    (state[_$key__$transitionPhase__WithTransitionState] ?? null)
        as TransitionPhase;
  1. @override
  2. @protected
set $transitionPhase (TransitionPhase value)
override

The current transition phase, derived from the current WithTransitionPropsMixin.isShown value.

Do not set directly.

Implementation

@override
@protected
set $transitionPhase(TransitionPhase value) =>
    state[_$key__$transitionPhase__WithTransitionState] = value;