I have a small form using a `DropdownMenu` and the...
# compose
b
I have a small form using a
DropdownMenu
and then a
TextField
. How can I make it to automatically focus the
TextField
and show keyboard after something was selected in the
DropdownMenu
? I tried to set a
FocusRequester
to the `TextField`'s
Modifier
and call
focusRequester.requestFocus()
from
DropdownMenuItem.onClick()
but it only focus the
TextField
and does not show the keyboard automatically.