This package supports drag & drop widgets inside the GridView.builder for multiplatform. It provides all the properties which are available in Gridview. builder and easy to implement with the few lines of code.
In my app, I don't need the user to reorder the contents but they are done when some filters are enabled.
Use case:
Grids show cars.
When user presses red color, I want to show only the red colored cars
And I want this filtering to happen in an animated way.
So there might be several cars that are removed from different places of the cars array.
When the filter is removed, all cars should be added in place with ordering animation.
In my app, I don't need the user to reorder the contents but they are done when some filters are enabled.
Use case:
Grids show cars. When user presses red color, I want to show only the red colored cars And I want this filtering to happen in an animated way. So there might be several cars that are removed from different places of the cars array. When the filter is removed, all cars should be added in place with ordering animation.
Can I use this package for this need?