This message was deleted.
# compose
s
This message was deleted.
t
When requesting focus on an IconButton for example via the normal
focusRequester.requestFocus()
the iconButton seems to become focused but it's not actually focus it's like in a pre focused state without showing the focused state. I need to press enter in the keyboard or dpad to actually focus the button. Then the icon background correctly change and the next enter/dpad will trigger the onClick.
I can't find anything related in the docs, is there some steps missing for non text focusable components ?
So actually it's caused by a second
.focusable()
on an already focusable item. Now just need to figure out how to detect if a composable is already focusable.