我的代码是:
GestureDetector(
child: Text('text'),
onLongPress: () {
print('++++++++++++++++++++++++');
},
onVerticalDragUpdate: (updateDetails) {
print('******************************************');
},
onHorizontalDragUpdate: (updateDetails){
print('-----------------------------------');
},
),
当我触发onLongPress事件时,不会触发onVerticalDragUpdate事件。为什么?