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;