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
Column {
TextField(Modifier.focusRequester(ref1)
TextField(Modifier.focusOrder(ref2){ previous = ref1 })
}
Notice how we had to use a focusRequester to specify ref1 but didn't need this for ref2.
It would be nice if we had an overloaded focusOrder that only accepted a focusRequester without a lambda.