I want to preserve favorite list with Hive in Flutter application. The user can change the order of the list with ReorderableListView. But Hive seems to be sorted with its key and we cannot store the order of the list.
Basically we implement ReorderableListView with following code.
onReorder: (int oldIndex, int newIndex) {
setState(() {
if (oldIndex < newIndex) {
newIndex -= 1;
}
final int item = _items.removeAt(oldIndex);
_items.insert(newIndex, item);
});
},
However Hive does not support insert.
What is the best practice when we want to store list data, which is reordered, with hive?
There is a similar question, but its answer will conflict with keys and flutter will output error. Flutter & Hive - How to Save Reordered List in Hive
Storage Service
main.dart