좀 편하게 해둘수도 있을 것 같지만, 다들 이렇게 헤깔리게 사는지 모르겠다.
onReorder: (int oldIndex, int newIndex) {
setState(() {
if (oldIndex < newIndex) {
newIndex -= 1;
}
final int item = mylist.removeAt(oldIndex);
mylist.insert(newIndex, item);
print(mylist);
});
},