Flutter 拖拽排序组件 ReorderableListView
老孟程序员 人气:0
![](https://img-blog.csdnimg.cn/2020030721120345.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L21lbmdrczE5ODc=,size_16,color_FFFFFF,t_70)
> 注意:无特殊说明,Flutter版本及Dart版本如下:
>
> - Flutter版本: 1.12.13+hotfix.5
> - Dart版本: 2.7.0
ReorderableListView是通过长按拖动某一项到另一个位置来重新排序的列表组件。
ReorderableListView需要设置`children`和`onReorder`属性,`children`是子控件,`onReorder`是拖动完成后的回调,用法如下:
```dart
List
加载全部内容