Events dispatched by Feathers UI navigators with animated transitions.
Available since
1.0.0
.Static variables
staticinlineread onlyTRANSITION_CANCEL:EventType<TransitionEvent> = "transitionCancel"
The TransitionEvent.TRANSITION_CANCEL
event type is dispatched when a
navigator cancels a transition between items and has restored the
previous item.
Available since
1.0.0
.See also:
staticinlineread onlyTRANSITION_COMPLETE:EventType<TransitionEvent> = "transitionComplete"
The TransitionEvent.TRANSITION_COMPLETE
event type is dispatched when
a navigator completes transitioning between items.
Available since
1.0.0
.See also:
staticinlineread onlyTRANSITION_START:EventType<TransitionEvent> = "transitionStart"
The TransitionEvent.TRANSITION_START
event type is dispatched when a
navigator start transitioning between items.
Available since
1.0.0
.See also:
Static methods
staticdispatch(dispatcher:IEventDispatcher, type:String, previousViewID:String, previousView:DisplayObject, nextViewID:String, nextView:DisplayObject):Bool
Dispatches a pooled event with the specified properties.
TransitionEvent.dispatch(component, Event.CHANGE, "prev-view", "next-view");
Available since
1.0.0
.