Closed ln-12 closed 3 years ago
For anyone wondering: the solution is to use withAnimation
:
withAnimation {
page.update(.next)
}
Hi @ln-12 , this is intended. It’s up to the user to use the animation they need:
withAnimation(desiredAnimation) {
page.update(.next)
}
Please check out ColorsExampleView inside the example project
Is your feature request related to a problem? Please describe. When using
page.update(.next)
andpage.update(.previous)
, the page is changed without any animation.Describe the solution you'd like Animate the page transition.
Is this possible to implement?