提交 0d16f7df authored 作者: kongdywang's avatar kongdywang

fix superPlayer slider click invalid issue

上级 78dd031c
......@@ -107,14 +107,27 @@ class VideoSliderState extends State<VideoSlider> {
}
},
onHorizontalDragCancel: () {
if (widget.canDrag!) {
if (widget.canDrag! && isDraging) {
isDraging = false;
widget.onDragEnd?.call(widget.controller.progress);
}
},
onTapDown: (TapDownDetails details) {
if (widget.canDrag!) {
onVerticalDragCancel: () {
if (widget.canDrag! && isDraging) {
isDraging = false;
widget.onDragEnd?.call(widget.controller.progress);
}
},
onTapUp: (TapUpDetails details) {
if (widget.canDrag! && !isDraging) {
_seekToPosition(details.globalPosition);
widget.onDragEnd?.call(widget.controller.progress);
}
},
onTapCancel: () {
if (widget.canDrag!) {
isDraging = false;
widget.onDragEnd?.call(widget.controller.progress);
}
},
child: Center(
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论