Action

public enum Action

Represents different types of actions that can take place in the navigation stack view.

Important

This is a Public Preview API. It may be changed or removed at any time.
  • Action taken upon arrival.

    Declaration

    Swift

    case arrival(action: ArrivalAction)
  • Action taken for confirmation.

    Declaration

    Swift

    case confirmation(action: ConfirmationAction)
  • Action taken when an error occurs.

    Declaration

    Swift

    case error(action: ErrorAction)
  • Action taken based on an instruction.

    Declaration

    Swift

    case instruction(action: InstructionAction)