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?
Asked
Active
Viewed 1,443 times
1

Ash Khachatryan
- 427
- 1
- 5
- 18
-
https://pub.dev/packages/auto_animated – Shubham Narkhede Dec 22 '20 at 14:45
-
https://pub.dev/packages/flutter_staggered_animations – Shubham Narkhede Dec 22 '20 at 14:46
-
https://pub.dev/packages/simple_animations – Shubham Narkhede Dec 22 '20 at 14:46
1 Answers
-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
-
thanks for answer, But I write I didn't want use custom animation – Ash Khachatryan Dec 22 '20 at 14:09
-
I don't think there are any library which focuses on this type of animation. It's easy todo using custom animation too. – Sulav Parajuli Dec 22 '20 at 14:13