所以我开始学习 Flutter 并想使用一个材料设计拖放列表,就像在材料指南网站上看到的那样。
与此相比,到目前为止我尝试过的所有库看起来都像垃圾。是否有一个我缺少的好库或原生 Flutter 小部件?
所以我开始学习 Flutter 并想使用一个材料设计拖放列表,就像在材料指南网站上看到的那样。
与此相比,到目前为止我尝试过的所有库看起来都像垃圾。是否有一个我缺少的好库或原生 Flutter 小部件?
您可以使用原生的颤振小部件ReorderableListView
来实现它,这里是这样做的例子。
List<String> _list = ["Apple", "Ball", "Cat", "Dog", "Elephant"];
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
body: ReorderableListView(
children: _list.map((item) => ListTile(key: Key("${item}"), title: Text("${item}"), trailing: Icon(Icons.menu),)).toList(),
onReorder: (int start, int current) {
// dragging from top to bottom
if (start < current) {
int end = current - 1;
String startItem = _list[start];
int i = 0;
int local = start;
do {
_list[local] = _list[++local];
i++;
} while (i < end - start);
_list[end] = startItem;
}
// dragging from bottom to top
else if (start > current) {
String startItem = _list[start];
for (int i = start; i > current; i--) {
_list[i] = _list[i - 1];
}
_list[current] = startItem;
}
setState(() {});
},
),
);
}
Flutter 本身提供了一个 (Material) ReorderableListView 类。
我已经尝试过flutter_reorderable_list和dragable_flutter_list但它们都不能正常工作 - 在拖动过程中有一些不需要的伪影。所以我试图做出自己的解决方案:
ListView.builder(
itemBuilder: (context, index) => buildRow(index),
itemCount: trackList.length,
),
Widget buildRow(int index) {
final track = trackList[index];
ListTile tile = ListTile(
title: Text('${track.getName()}'),
);
Draggable draggable = LongPressDraggable<Track>(
data: track,
axis: Axis.vertical,
maxSimultaneousDrags: 1,
child: tile,
childWhenDragging: Opacity(
opacity: 0.5,
child: tile,
),
feedback: Material(
child: ConstrainedBox(
constraints:
BoxConstraints(maxWidth: MediaQuery.of(context).size.width),
child: tile,
),
elevation: 4.0,
),
);
return DragTarget<Track>(
onWillAccept: (track) {
return trackList.indexOf(track) != index;
},
onAccept: (track) {
setState(() {
int currentIndex = trackList.indexOf(track);
trackList.remove(track);
trackList.insert(currentIndex > index ? index : index - 1, track);
});
},
builder: (BuildContext context, List<Track> candidateData,
List<dynamic> rejectedData) {
return Column(
children: <Widget>[
AnimatedSize(
duration: Duration(milliseconds: 100),
vsync: this,
child: candidateData.isEmpty
? Container()
: Opacity(
opacity: 0.0,
child: tile,
),
),
Card(
child: candidateData.isEmpty ? draggable : tile,
)
],
);
},
);
}
我想,这不是最好的解决方案,我可能会进一步改变它,但现在它工作得很好
检查knopp/flutter_reorderable_list。它实现了这一点。它真的很流畅,没有性能问题,能够处理数千个项目。
但是,它的实现并不像通常的颤振小部件那样容易。
如果您对此感到困惑,我建议您使用我创建的小部件将flutter/ReorderableListView
s 移植到knopp/ReorderableList
.
这个小部件使它非常易于使用,但是它没有提供相同的灵活性,并且由于它与 a 一起使用children
List
,它不像原来那样具有可扩展性。
这是ReorderableListSimple的代码,这是演示。
Flutter 团队引入了ReorderableListView小部件。
ReorderableListView(
children: <Widget>[
for (var item in appState.menuButtons)
Text('data')
],
)