Reza Aslejeddian
Reza Aslejeddian

Reputation: 371

OS apps reordering feature in Flutter

I want to implement a reordering feature just like OS reordering we have in Android or IOS, This feature requires multi-page reordering which I was not able to find in Flutter packages. Example : enter image description here

Upvotes: 0

Views: 31

Answers (1)

kokoko
kokoko

Reputation: 3982

The ReorderableListView widget allows you to reorder items in a list by dragging and dropping them. plus you can use draggable grid view package.

check following links for further assistance:

Upvotes: 0

Related Questions