我是 Flutter 的初学者,目前正在使用 Hive 和 Boxes 实现本地项目保存。一切都很好,直到我决定重新排序项目列表。
我的问题是:我如何保存重新排序的更改,知道我不能使用传统的InsertAt(index)
和RemoveAt(index)
Hive。
Box<Item> itemsBox;
List<Item> items; //Item class extends HiveObject
void addItem(Item item) {
setState(() {
items.add(item);
itemsBox.add(item);
});
}
void removeItem(Item item) {
setState(() {
items.remove(item);
item.delete();
});
}
void _onReorder(int oldIndex, int newIndex) {
setState(() {
Item row = items.removeAt(oldIndex);
items.insert(newIndex, row);
int lowestInt = (oldIndex < newIndex) ? oldIndex : newIndex;
int highestInt = (oldIndex > newIndex) ? oldIndex : newIndex;
// What Can I Do with my box to save my List<Item> items
// Box is a Box<Item>
});
}