【发布时间】:2020-09-05 04:35:34
【问题描述】:
我知道对于向下滑动检测有 onVerticalDragDown,但对于向上滑动检测,GestureDetector 小部件中没有 onVerticalDragUp 参数。
【问题讨论】:
标签: flutter dart flutter-layout flutter-dependencies flutter-animation
我知道对于向下滑动检测有 onVerticalDragDown,但对于向上滑动检测,GestureDetector 小部件中没有 onVerticalDragUp 参数。
【问题讨论】:
标签: flutter dart flutter-layout flutter-dependencies flutter-animation
您正在寻找 GestureDetector 类中的 onPanUpdate 方法。
GestureDetector(onPanUpdate: (details) {
if (details.delta.dx > 0)
print("Dragging in +X direction");
else
print("Dragging in -X direction");
if (details.delta.dy > 0)
print("Dragging in +Y direction");
else
print("Dragging in -Y direction");
});
注意:不要将此方法与您已经使用的方法一起使用 (onVerticalDragDown) 或 onVerticalDragUpdate()。
【讨论】: