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

时间:2018-08-21 10:28:32

标签: flutter gesture gesturedetector

我的代码是:

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

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

0 个答案:

没有答案