From a small portion of a composable to the initia...
# compose
a
From a small portion of a composable to the initial clip rect of the composable?
Similar to this
Obviously shared element transitions dont exist, I'm really just shimming it in for sake of toying around
c
d
I would also recommend checking out LayoutModifier. It would allow you to animate clipped size (via
layout(animatedWidth, animatedHeight)
) and offset via
placeRelative(animatedX, animatedY)
. Here's an example of animating the clipped size, i.e.
animateContentSize
.
today i learned 1
a
Thanks! I will take a look at this 🙂