From 3634765b0c5a74aa11485908ceaa8b97719d5882 Mon Sep 17 00:00:00 2001 From: orz12 Date: Sun, 3 Mar 2024 23:14:54 +0800 Subject: [PATCH] =?UTF-8?q?mod:=20=E5=8F=8C=E5=87=BB=E8=BF=9B=E9=80=80?= =?UTF-8?q?=E9=98=B2=E5=BE=A1=E6=80=A7=E7=BC=96=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/plugin/pl_player/view.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/plugin/pl_player/view.dart b/lib/plugin/pl_player/view.dart index 7e2a06fd0..e011d8747 100644 --- a/lib/plugin/pl_player/view.dart +++ b/lib/plugin/pl_player/view.dart @@ -785,6 +785,7 @@ class _PLVideoPlayerState extends State }, onSubmitted: (Duration value) { _ctr.hideSeekBackwardButton.value = true; + _ctr.mountSeekBackwardButton.value = false; final Player player = widget.controller.videoPlayerController!; Duration result = player.state.position - value; @@ -831,6 +832,7 @@ class _PLVideoPlayerState extends State }, onSubmitted: (Duration value) { _ctr.hideSeekForwardButton.value = true; + _ctr.mountSeekForwardButton.value = false; final Player player = widget.controller.videoPlayerController!; Duration result = player.state.position + value;