So, we have a screen with a set of cards, that sta...
# compose
m
So, we have a screen with a set of cards, that start out as placeholders, and live in a mutableStateList. As each card data gets loaded, the items in the mutableStateList gets replaced with the actual card content. I’m looking for a way to implement some sort of transition between between the placeholder and the real card. I had thought about using AnimatedVisibility, but i think what we want is for the placeholder card to fade out and the new card fade in over the top of it. I’m not sure that can be realistically done with AnimatedVisibility can it?