如何在颤振中更新列子项 onDragComplete

时间:2021-03-03 10:13:40

标签: flutter flutter-web

我的 flutter-web 中有一个具有拖放功能的布局。拖动完成后,我想通过 API 在列中显示有关拖动元素的信息。

child: Container(
               padding: const EdgeInsets.all(5.0),
               margin: const EdgeInsets.only(top: 5.0, left: 5),
               color: Colors.white,
               child: Single Child ScrollView(
                 child: Column(
                   children: <Widget>[params],
                 ),
               )
               //    child:widgetListtile,
               )

我想通过

更新参数
onDragCompleted:() {
    params=fetchAttributes(id);
}

请帮忙

1 个答案:

答案 0 :(得分:0)

您可以使用 GestureDetactor GestureDetector(onDragCompleted: params=fetchAttributes(id), child: )