How can I tell `AnimatedContent` to not run an ani...
# compose
a
How can I tell
AnimatedContent
to not run an animation at all? Returning
EnterTransition.None togetherWith  ExitTransition.None
for the ContentTransform results in a frame or two where both the old and new content are visible.
Ah, got it.
Copy code
fadeIn(SnapSpec()) togetherWith fadeOut(SnapSpec()))
👍 1