1

What package I can use for grid view animations? I want remove grid view item like in IOS Home Screen App delete, and didn't want create custom animation. There is package for do this?

Ash Khachatryan
  • 427
  • 1
  • 5
  • 18

1 Answers1

-2

You could give a try to use AnimatedContainer

Change the width from item width to 0, when the tap event occurs.

AnimatedContainer detects that the property width changed and animation is shown.

After finishing animation you can remove that item from list.

Sulav Parajuli
  • 143
  • 2
  • 11