Patrick Yin
08/15/2020, 6:51 PMTextView
, 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.