有谁知道为什么flutter在GestureDetector中触发onLongPress事件后无法触发onVerticalDragUpdate事件

lon*_*ong 5 gesture gesturedetector flutter

我的代码是:

GestureDetector(
      child: Text('text'),
      onLongPress: () {
        print('++++++++++++++++++++++++');
      },
      onVerticalDragUpdate: (updateDetails) {
        print('******************************************');
      },
      onHorizontalDragUpdate: (updateDetails){
        print('-----------------------------------');
      },
    ),
Run Code Online (Sandbox Code Playgroud)

当我触发onLongPress事件时,onVerticalDragUpdate事件不会被触发。为什么?