Home > database >  How to add animtion in Horizonal Pager in Jetpack Compose?
How to add animtion in Horizonal Pager in Jetpack Compose?

Time:02-20

I have a HorizonalPager but there is no animation means it goes to second page suddenly i want that it animates to go softly or little bit slow and How to get rid of those stretch animation or whatever they are called

Here is a gif

enter image description here

CodePudding user response:

I faced same issue when I used old version of library:

implementation "com.google.accompanist:accompanist-pager:0.20.0"

But when I updated it to

implementation "com.google.accompanist:accompanist-pager:0.23.0"

all went good. Try it.

  • Related