StavFX
07/26/2024, 4:19 PMcomposeView.isFocusable = false
for those cases and that didn't work. I dug in deeper and found that a ComposeView usually has a single child: AndroidComposeView (src), so in my onBindViewHolder
I put:
holder.composeView.doOnAttach {
(it as ViewGroup).get(0).isFocusable = focusable
}
And that actually works, but is a terrible hack.
Is there a "proper" way to get this to work?Zach Klippenstein (he/him) [MOD]
07/26/2024, 5:12 PMRalston Da Silva
07/26/2024, 6:03 PM