Mark
05/05/2023, 7:22 AMFlowRow
with multiple child `Chip`s. I can’t find a way to prevent the `Chip`s from being clickable. I just want the whole FlowRow
to be clickable (Modifier.onClick
) as a single target. Note, I’ve tried setting enabled = false
on the `Chip`s but this still steals the click event.Stylianos Gakis
05/05/2023, 9:32 AMMark
05/05/2023, 9:36 AMFlowRow
in a Box
so that I can put another Box
(transparent) on top of it (second child of parent Box
) So the second Box
has the clickable modifier, so that the FlowRow
never receives click events, and that seems to work okay.Stylianos Gakis
05/05/2023, 9:37 AMMark
05/05/2023, 9:38 AMStylianos Gakis
05/05/2023, 9:40 AMMark
05/05/2023, 11:37 AMjolo
05/05/2023, 2:28 PM