LoginFlowDisposition

public enum LoginFlowDisposition

The flow dispositions can tell the login flow what to do right before it is about to go to a login or signup flow.

  • Just carry on

    Declaration

    Swift

    case `continue`
  • Do not carry on, and either dismiss or do not dismiss the flow

    Declaration

    Swift

    case abort(shouldDismiss: Bool)
  • Do not carry on, show a popup error instead

    The visual format of this error will match the built-in identity UI flow style, and instead show the title you specify with a description string you want.

    Declaration

    Swift

    case showError(title: String, description: String)