// InkWell:主要支持基础点击事件:
InkWell(
onTap: () {}, // 点击
onDoubleTap: () {}, // 双击
onLongPress: () {}, // 长按
// 其他:onTapDown、onTapCancel 等
)
//GestureDetector:支持更丰富的手势,包括滑动、缩放等:
GestureDetector(
onTap: () {}, // 点击
onLongPress: () {}, // 长按
onPanUpdate: (details) {}, // 拖动
onScaleUpdate: (details) {}, // 缩放
// 其他:onVerticalDragUpdate、onHorizontalDragEnd 等
)