在 Flutter 中有一个名为 Draggble 的小部件。我在其中添加了一个文本小部件作为子部件,然后希望允许用户在其父部件中拖动。但是每次完成拖动后, child(Text)会显示在旧位置。
我已经在文档中看到是否有任何标记需要更新以允许孩子拖动位置,但是似乎没有它。
child: Draggable<int>(
child: Container(
width: double.infinity,
height: double.infinity,
color: Colors.yellow,
child: Text(
"Drag me to center",
style: TextStyle(color: Colors.black, fontSize: 26
),
),
feedback: Text(
"Wow! it's dragging",
style: TextStyle(color: Colors.red, fontSize: 26),
)),
无论如何,被拖动的孩子仍然保持在最新的拖动位置吗?