Events dispatched by the active view in StackNavigator
may trigger
actions, such as navigation.
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.
1.0.0
.Replace(id:String, inject:T ‑> Void, transition:(DisplayObject, DisplayObject) ‑> IEffectContext)
Replace the navigator's active view with a different view.
1.0.0
.Pop(returnedObject:Dynamic, transition:(DisplayObject, DisplayObject) ‑> IEffectContext)
Pop the active view and navigate to the previous item in the history stack.
1.0.0
.PopMultiple(count:Int, returnedObject:Dynamic, transition:(DisplayObject, DisplayObject) ‑> IEffectContext)
Pop a specific number of views and navigate to the previous item in the history stack.
1.2.0
.PopToRoot(returnedObject:Dynamic, transition:(DisplayObject, DisplayObject) ‑> IEffectContext)
Pop all items from the history stack, except for the first item.
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.
1.0.0
.Listener(callback:E ‑> Void)
Call an event listener. Does not navigate to a different view.
1.0.0
.NewAction(callback:E ‑> StackAction)
Call a function that creates a new action. The new action will be triggered instead.
1.0.0
.