ViewStatus

public enum ViewStatus : String

Current status of a BridgeView.

  • The webview is starting/scripts are loading. No communication channel has been established.

    Declaration

    Swift

    case initializing
  • The embedded application has loaded, and is awaiting a page to load.

    Declaration

    Swift

    case empty
  • Page has been received, embedded app is waiting for language, token or data requests to finish.

    Declaration

    Swift

    case loading
  • Page has successfully started.

    Declaration

    Swift

    case running
  • Something has gone wrong, either during initialization, loading, or while the user has been interacting with the embedded app.

    Declaration

    Swift

    case errored