I noticed that the ripple effect transfers to the ...
# compose
i
I noticed that the ripple effect transfers to the next item in Column if you have it on a delete button. How can I mitigate it?
f
Using
key(...) { ... }
on your items could help 🤔 (if the items are in
Column
- use
key
param if in lazy layout)
i
yup, wrapping the whole thing in
key(...) { ... }
worked, thanks!🙏 is there a more elegant solution though?
f
Whole thing? You should wrap individual items 😅
i
yeah, I meant the whole item Row
f
Oh, ok 👍 No, I don't think there is something more elegant for this. Seems pretty elegant to me already 🤷 It's a one-liner. What else are you looking for?
🙏 1