I'm using `AnimatedContent` with `slideInVerticall...
# compose
m
I'm using
AnimatedContent
with
slideInVertically
/
slideOutVertically
, but the animated content gets clipped. How can I remove this clipping?
a
When I did a similar thing I followed this and it comes down to setting clip to false on the transitionSpec:
Copy code
.using(
            // Disable clipping since the faded slide-in/out should
            // be displayed out of bounds.
            SizeTransform(clip = false)
        )
m
That fixed it, thank you.