It seems that `Surface` doesn’t allow click events...
# compose
g
It seems that
Surface
doesn’t allow click events to come through even if
clickable
is not set. Is it possible to propagate its clicks to parent composable?
e
You have to use onClick param as on Button
g
Sorry, I guess my question was not clear. I don’t want the
Surface
handle the click, I want the parent composable to do it. But the
Surface
always steals the click and doesn’t propagate it, even if no
onClick
or clickable modifier is set.
l
I think I'd open an issue to have Surface steal clicks from parent only if it has an onClick not set to null.