-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Animations not playing after Navigator.pop #19
Comments
I have that same issue. Did you find any solution? |
Same issue |
maby you can add a key to AnimationLimiter
it means that when your list size changed, the widget will rebuild |
look at my comment blow, hope I can help you |
What about when the list size is the same? |
it doesn't work at all on Android for Listview |
On
ScreenA
I have some animations. When I pop out ofScreenB
, back intoScreenA
, the animations don't replay in spite of the screen rebuilding.ScreenA
and the animations play.ScreenA
to go toSrceenB
:ScreenB
I click a button to return toScreenA
:Navigator.pop(context)
setState
gets called as expected andScreenA
is rebuilt, but the animations don't replay.I'm testing on Android.
Note that this is how Flutter animations generally behave. The controller has to be manually restarted after Navigator.pop. My issue is that I don't have a way of restarting animations built using this package.
Is there any way of getting it to work the way I want it to work?
The text was updated successfully, but these errors were encountered: