NextFlowItems
public enum NextFlowItems
NextFlowItems reprent the next things that will trigger navigation actions inside a Flow
- multiple: a Flow will trigger several NextFlowItem at the same time for the same Step
- one: a Flow will trigger only one NextFlowItem for a Step
- end: a Flow will trigger a special NextFlowItem that represents the dismissal of this Flow
- none: no further navigation will be triggered for a Step
-
a Flow will trigger several NextFlowItem at the same time for the same Step
Declaration
Swift
case multiple(flowItems: [NextFlowItem])
-
a Flow will trigger only one NextFlowItem for a Step
Declaration
Swift
case one(flowItem: NextFlowItem)
-
a Flow will trigger a special NextFlowItem that represents the dismissal of this Flow
Declaration
Swift
case end(withStepForParentFlow: Step)
-
a Flow will trigger a special NextFlowItem that allows to trigger a new Step for the parent Flow (same as .end but without stopping listening for child flow steppers)
Declaration
Swift
case triggerParentFlow(withStep: Step)
-
no further navigation will be triggered for a Step
Declaration
Swift
case none