PageEvent

sealed interface PageEvent<Key>

Represents the loading state of a page identified by key.

Inheritors

Types

Link copied to clipboard
value class Loaded<Key>(val key: Key) : PageEvent<Key>
Link copied to clipboard
value class Loading<Key>(val key: Key) : PageEvent<Key>
Link copied to clipboard
value class Unloaded<Key>(val key: Key) : PageEvent<Key>

Properties

Link copied to clipboard
abstract val key: Key