Fixed
Status Update
Comments
ra...@google.com <ra...@google.com>
ap...@google.com <ap...@google.com> #2
We have some support in androidx.compose.ui.autofill
Leaving this bug open in case Ralston wants to add more info
Description
val anyAction: KeyboardActionScope.() -> Unit = { ... }
val keyboardActions = KeyboardActions(
onDone = anyAction,
onGo = anyAction,
onNext = anyAction,
onPrevious = anyAction,
onSearch = anyAction,
onSend = anyAction,
)
Add some helper function that changes the above code to something more simpler like:
val keyboardActions = KeyboardActions(anyAction = {...} )