Let's say I have ```images.forEach { Img(image.url...
# compose-web
j
Let's say I have
Copy code
images.forEach { Img(image.url, ...) }
Now, I change images, and get a recomposition. What's the recommended way to make the
Img
s slide into their new position instead of instantly popping? I tried adding some css transitions but no luck.
o
Perhaps key(image.url) { Img(...) } can help