LoadingState

sealed class LoadingState

Sealed class for constraining possible loading states. See Loading and Finished.

Types

Finished
Link copied to clipboard
object Finished : LoadingState
Describes a webview that has finished loading content.
Initializing
Link copied to clipboard
object Initializing : LoadingState
Describes a WebView that has not yet loaded for the first time.
Loading
Link copied to clipboard
data class Loading(progress: Float) : LoadingState
Describes a webview between onPageStarted and onPageFinished events, contains a progress property which is updated by the webview.

Inheritors

LoadingState
Link copied to clipboard
LoadingState
Link copied to clipboard
LoadingState
Link copied to clipboard