英文:
How to Reposition items inside Grouped list and Reposition Group in flutter?
问题
需要通过拖放来重新定位分组列表中的项目,同时还需要通过拖放来重新定位Flutter中的分组。
英文:
Need to Reposition item inside grouped list by drag and drop and also need to Reposition group by drag and drop in flutter
答案1
得分: 1
看起来你正在寻找ReorderableListView小部件。
我认为如果你想重新排列项目和分组,你可以使用ReorderableListView作为另一个ReorderableListView的ListItem。
英文:
It looks like you're looking for the ReorderableListView widget.
I believe if you want to reorder items and groups, you could do this using a ReorderableListView as the ListItem for another ReorderableListView.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论