ScreenNavigateAction
public struct ScreenNavigateAction<Container> : ScreenAction where Container : ScreenContainer
Performs a set of actions.
-
The type of value returned by the action.
Declaration
Swift
public typealias Output = Void
-
Actions to be performed.
Declaration
Swift
public let actions: [AnyScreenAction<Container, Void>]
-
Creates an action.
Declaration
Swift
public init(actions: [AnyScreenAction<Container, Void>])
Parameters
actions
Actions to be performed.
-
Declaration
Swift
public func perform( container: Container, navigator: ScreenNavigator, completion: @escaping Completion )