Is it possible to specify the bounds of an indicat...
# compose
s
Is it possible to specify the bounds of an indication for a custom layout? When someone taps on a row in my
Layout
, I want that row to be indicated, not the entire
Layout
. (just asked this in #compose-android by mistake)
e
Add the indication on the row? If its a composable passed from outside you can always wrap it inside a Box
s
I ended up adding a clickable
Box
for the row, but not wrapping the cells.