如果要无条件处理指针向下事件而不会造成歧义,可以将InkWell设为Listener的子级,并设置onPointerDown处理程序。
例如:
new Listener( onPointerDown: (e) { print('onPointerDown'); }, child: new InkWell( child: new Text('Tap me'), onTap: () { print('onTap'); } ),),向InkWell添加onTapDown处理程序可能是有意义的。



