Qk Lahpita
Qk Lahpita

Reputation: 447

Animation when switch grid view to list view - Flutter

I want to have the animation like this when switch between grid view and list view. How can I do it in Flutter?

![Text](https://im3.ezgif.com/tmp/ezgif-3-d2131e9e11f0.gif)

Upvotes: 6

Views: 2823

Answers (1)

Ercan Tomaç
Ercan Tomaç

Reputation: 81

Simply creating a ListView and a GridView, using a bool variable to determine which one to show, wrapping each child in a Hero, and when you want to switch, changing the value of the said bool variable and then pushing the same route works. See here: https://dartpad.dev/05785dfd91a02e55d68a6cd086dcbf0b

Upvotes: 5

Related Questions