我正在尝试获取用户是否使用 GestureDetector 小部件水平或垂直滑动。出于某种原因,我无法使 onVerticalDragEnd 属性工作。HorizontalDragEnd 工作得很好。
我应该添加其他东西吗?
`
child: new GestureDetector(
onHorizontalDragEnd: (DragEndDetails details) {
print("horizontal drag");
},
onVerticalDragEnd : (DragEndDetails details) {
print("vertical drag");
} ,
child: new GridView.count(..
`