Tkko / Flutter_dismissible_page

Flutter page widget that is dismissed by swipe gestures, with Hero style animations, Inspired by Facebook and Instagram stories.
https://pub.dev/packages/dismissible_page
MIT License
151 stars 39 forks source link

Bug with PageView #26

Closed gidrokolbaska closed 1 year ago

gidrokolbaska commented 1 year ago

If you dismiss the fullscreen view while pageview is still animating, you will see the double Hero effect:

https://user-images.githubusercontent.com/54116985/235725059-a2561ad2-4bc6-4c99-b96f-99bd08af337e.mov

Is it a bug or intended?

Tkko commented 1 year ago

This happens because both Hero widget is active and visible, you can listen to PageView and disable one of them by using HeroMode widget

gidrokolbaska commented 1 year ago

This happens because both Hero widget is active and visible, you can listen to PageView and disable one of them by using HeroMode widget

Ahaa, got it. Thanks for the tip with HeroMode