Events dispatched by the active view in StackNavigator may trigger actions, such as navigation.

Available since

1.0.0

.

See also:

Values

Push(id:String, inject:T ‑> Void, transition:(DisplayObject, DisplayObject) ‑> IEffectContext)

Navigate to a new item that is added to the history stack.

Available since

1.0.0

.

Replace(id:String, inject:T ‑> Void, transition:(DisplayObject, DisplayObject) ‑> IEffectContext)

Replace the navigator's active view with a different view.

Available since

1.0.0

.

Pop(returnedObject:Dynamic, transition:(DisplayObject, DisplayObject) ‑> IEffectContext)

Pop the active view and navigate to the previous item in the history stack.

Available since

1.0.0

.

PopToRoot(returnedObject:Dynamic, transition:(DisplayObject, DisplayObject) ‑> IEffectContext)

Pop all items from the history stack, except for the first item.

Available since

1.0.0

.

PopToRootAndReplace(id:String, inject:T ‑> Void, transition:(DisplayObject, DisplayObject) ‑> IEffectContext)

Pop all items from the history stack, except for the first item, but replace the first item with a different item.

Available since

1.0.0

.

Listener(callback:E ‑> Void)

Call an event listener. Does not navigate to a different view.

Available since

1.0.0

.

NewAction(callback:E ‑> StackAction)

Call a function that creates a new action. The new action will be triggered instead.

Available since

1.0.0

.