TextInputEvent

sealed interface TextInputEvent(source)

Immutable committed-character or input-method preedit event delivered to the currently focused component.

Inheritors

Types

Link copied to clipboard
data class Character(val codePoint: Int) : TextInputEvent

One committed Unicode scalar value.

Link copied to clipboard
class Preedit(val fullText: String, val caretPosition: Int, blocks: List<String>, val focusedBlock: Int) : TextInputEvent

Immutable input-method composition state.