CoilImageState

sealed class CoilImageState

CoilImageState is a state of the coil image requesting.

Types

Failure
Link copied to clipboard
data class Failure(errorDrawable: Drawable?) : CoilImageState
Request failed.
Loading
Link copied to clipboard
data class Loading(progress: Float) : CoilImageState
Request is currently in progress.
None
Link copied to clipboard
object None : CoilImageState
Request not started.
Success
Link copied to clipboard
data class Success(imageBitmap: ImageBitmap?) : CoilImageState
Request is completed successfully amd ready to use an ImageBitmap.

Inheritors

CoilImageState
Link copied to clipboard
CoilImageState
Link copied to clipboard
CoilImageState
Link copied to clipboard
CoilImageState
Link copied to clipboard