chewie
chewie copied to clipboard
How to autoplay next video like youtube?
I'm making an application where I want to show list of videos and want to autoplay after the completion of playing video.
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...
}
});