Events dispatched by Feathers UI navigators with animated transitions.

Available since

1.0.0

.

Static variables

@:value("transitionCancel")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:

@:value("transitionComplete")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:

@:value("transitionStart")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

.

Constructor

new(type:String, previousViewID:String, previousView:DisplayObject, nextViewID:String, nextView:DisplayObject)

Creates a new TransitionEvent object with the given arguments.

Available since

1.0.0

.

See also:

Variables

nextView:DisplayObject

The previous view displayed by the navigator.

Available since

1.0.0

.

nextViewID:String

The ID of the next view displayed by the navigator.

Available since

1.0.0

.

previousView:DisplayObject

The previous view displayed by the navigator.

Available since

1.0.0

.

previousViewID:String

The ID of the previous view displayed by the navigator.

Available since

1.0.0

.

Methods

Inherited Variables

Inherited Methods