Skip to content

Instantly share code, notes, and snippets.

@zsoltk
Created July 28, 2021 07:49
Show Gist options
  • Save zsoltk/762d63b134cef55d1e300cbfae40513b to your computer and use it in GitHub Desktop.
Save zsoltk/762d63b134cef55d1e300cbfae40513b to your computer and use it in GitHub Desktop.
val offset = remember { Animatable(currentOffset ?: targetOffset, Offset.VectorConverter) }
LaunchedEffect(targetOffset) {
offset.animateTo(targetOffset, tween(100, easing = LinearEasing))
}
LaunchedEffect(isFlipped) {
offset.snapTo(targetOffset)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment