LoginWillSucceedDisposition

public enum LoginWillSucceedDisposition

The will-finish disposition gives you a last chance to get work done before the UI is done. It allows you to either continue with login or show an error screen with a message

  • This will carry on with the flow

    Declaration

    Swift

    case `continue`
  • This will show an error pop up with a title and string you specify, and restart the flow.

    Declaration

    Swift

    case failed(title: String, message: String)
  • This will only restart the flow without displaying any pop up message

    Declaration

    Swift

    case restart