In Jetpack Compose, many animations are driven by a single fraction t β [0,1]
.
For example, you might use lerp(start, end, t)
to animate position, size, or color in sync.
But what if you want different properties to feel slightly out of sync?
This is where time remapping comes in.