Compose animation has a slideInVertically transiti...
# compose
i
Compose animation has a slideInVertically transition. It animates from the top. Is there a way to animate it from the bottom?
b
You can specify how it should animate by passing
initialOffsetY
parameter. To animate it from bottom you can call it like
slideInVertically { it / 2 }
.
🎉 1
i
It's working! Thank you
👍 1