State

data class State(val loadCount: Int, val attached: Boolean, val deliveredChangeCount: Int, val uncaughtException: Throwable? = null)

Constructors

Link copied to clipboard
constructor(loadCount: Int, attached: Boolean, deliveredChangeCount: Int, uncaughtException: Throwable? = null)

Properties

Link copied to clipboard

True if this content is currently responding to user actions.

Link copied to clipboard

How many times the content has updated itself. This is approximately the number of recompositions that had non-empty updates.

Link copied to clipboard

How many attempts have been made to load this content.

Link copied to clipboard

The most recent exception that crashed this content.