chewie icon indicating copy to clipboard operation
chewie copied to clipboard

How to autoplay next video like youtube?

Open gourav6m17 opened this issue 3 years ago • 1 comments

I'm making an application where I want to show list of videos and want to autoplay after the completion of playing video.

gourav6m17 avatar May 16 '22 08:05 gourav6m17

Add a listener to the VideoPlayerController. You can listen to the completion status of playing the current video. If the video playback is complete, you can skip to the next video.

 _videoPlayerController.addListener(() {
      final bool isFinished = _videoPlayerController.value.position >=
          _videoPlayerController.value.duration;
      if (isFinished) {
        // Play next video...
      }
    });

burhanaksendir avatar May 16 '22 09:05 burhanaksendir