Filed a bug here: <https://issuetracker.google.com...
# compose
p
Filed a bug here: https://issuetracker.google.com/issues/164629368 Seems like the emitView blocks onFocus event. So if using emitView to wrap a classic
TextView
, the view will be not focusable when using TalkBack.. when TalkBack enabled, normally people can swap to move the focusable element to let TalkBack read the text, but for this case, the TextView won’t get focused at any case. If replace
emitView(::TextView)
with compose’s
Text()
, it will work as expect. Also, If putting a clickable
Box
as a wrapper of
emitView
, the TextView will be able to read from TalkBack.