darkmoon_uk
08/19/2021, 2:08 AMfocusable(...) does not seem to be working as advertised?
I'm trying to make a Box (or Surface - I'm not fussy 😁) be focusable so have modified it to:
• be .focusable(true) ✅
• have a focusOrder(myFocusRequester) ✅
Documentation suggests this is all we need for a custom composable to be focused, and yet, when I call requestFocus() on my `Box`'s focus requester, the previously focused component (a regular TextField) does not appear to 'let go' of it's focus, also TalkBack does not shift it's highlight to the Box component.
What else do I need to do to effect a full transfer of focus over to my custom component?rnett
08/19/2021, 2:28 AMfocusOrder first, that's gotten me a couple of times.darkmoon_uk
08/19/2021, 2:37 AMdarkmoon_uk
08/19/2021, 2:39 AM