`FocusManager.moveFocus(FocusDirection.Down)` does...
# compose
r
FocusManager.moveFocus(FocusDirection.Down)
doesn't scroll to the nearest focusable descendent, if i am calling it from the last visible node on the screen and next focusable node is out of the screen. Is this an expected behavior and needs some extra handling or it's a known bug? Here, my all focusable nodes are text-fields.
c
There's been a ton of focus work in the latest compose alphas. I'd read through the release notes/upgrade to see if your problem is solved. If not, create a minimal repro bug. They've been getting these triaged fairly quickly from what I've seen.
👍 1
z
Are your fields in a lazy list by any chance?
r
They are inside a column with verticalscroll.
z
Are you on the latest alpha?
r
Haven't tried on latest alpha, need to check. I had checked on
1.0.x
version. It could probably have been fixed on latest alpha, i see lot of focus related work in release notes.
c
Yeah, like I said in my original comment. Try the latest alphas 😁
👍 1
z
Oh yea, 1.0.x isn’t even the latest stable minor version so all bets are off there
👍 1