فهرست منبع

Refactor pause logic in VidPlayerController

gavin.chen 1 سال پیش
والد
کامیت
20a02e6607
1فایلهای تغییر یافته به همراه6 افزوده شده و 1 حذف شده
  1. 6 1
      lib/view/player/controller.dart

+ 6 - 1
lib/view/player/controller.dart

@@ -161,7 +161,12 @@ class VidPlayerController extends ChangeNotifier implements IPlayerController {
 
   @override
   void pause() {
-    if (!playing) return;
+    if (!playing) {
+      if (_status != VidPlayStatus.pause) {
+        _setStatus(VidPlayStatus.pause);
+      }
+      return;
+    }
 
     _playAssistant?.pause();
     _setStatus(VidPlayStatus.pause);