Maybe a n00b question, but I can't seem to figure it out. I have a list of items I want to show, which is passed as a
List<Item>
to a Composeable. That one renders each one with a
items.forEach { ... }
. However, if the list changes I want the new ones to fade-in. But AnimatedVisibility doesn't really work here because the item is there or it is not, so I have no parameter to pass to AnimatedVisibility. What is the preferred way?