Fixed
Status Update
Comments
ra...@google.com <ra...@google.com>
ap...@google.com <ap...@google.com> #2
Hi. Thanks for reporting this. Fixed in alpha-04
No update yet.
Hi. Thanks for reporting this. Fixed in alpha-04
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 = {...} )