One question about wrapping the classic android view inside of a compose component:
See code below, if you click TextView area, it’s not clickable, but if you click the Box’s padding area, it’s clickable. And if replace
emitView(::TextView)
with a compose
Text("")
, it works well. Is it an intentional behavior? Or there is something wrong?