Matthewdhowell
03/12/2020, 10:47 PMZach Klippenstein (he/him) [MOD]
03/12/2020, 11:43 PMFocusable
– maybe wrap each field in a Focusable
?
https://developer.android.com/reference/kotlin/androidx/ui/focus/package-summary#Focusable(androidx.ui.focus.FocusOperator,%20kotlin.Function1)Matthewdhowell
03/12/2020, 11:44 PMZach Klippenstein (he/him) [MOD]
03/13/2020, 3:10 AMTextField(focusIdentifier = "…")
. You can then pass that string to FocusManager.requestFocusById()
. You can get the FocusManager
by calling FocusManagerAmbient.current
(must be done outside a callback).Matthewdhowell
03/13/2020, 3:24 AMLeland Richardson [G]
03/13/2020, 6:44 AM