ReorderableListView in Flutter using GetX || Flutter || GetX

Описание к видео ReorderableListView in Flutter using GetX || Flutter || GetX

Support : https://paypal.me/ripplescode
In this video I have discussed how to use ReorderableListView in Flutter using GetX.
Modified reorder code
==================
void reorder(oldIndex, newIndex) {
if (newIndex greater than oldIndex) {
newIndex -= 1;
}
final items = myFav.removeAt(oldIndex);
myFav.insert(newIndex, items);
}
Source Code: https://github.com/RipplesCode/Flutte...
#ReorderableListViewFlutter #ReorderableListViewGetX#FlutterGetX

Комментарии

Информация по комментариям в разработке