cached_video_player_plus icon indicating copy to clipboard operation
cached_video_player_plus copied to clipboard

[Feature] Add progress indicator that behave like VideoPlayerProfressIndicator

Open gmr-renato opened this issue 7 months ago • 0 comments

VideoPlayer original package has VideoPlayerProgressIndicator that offers a great drag controller for small videos like TikTok and Reels timeline.

I tried to switch from the original package to this one, but without a VideoPlayerProgressIndicator my TikTok-like timeline loses functionality. I was expecting something like this:

  CachedVideoPlayerPlusProgressIndicator(
    videoPlayerController,
    allowScrubbing: true,
    padding: const EdgeInsets.all(8),
    colors: VideoProgressColors(
      playedColor: Colors.white,
      bufferedColor: Colors.black.withOpacity(0.4),
      backgroundColor: Colors.black.withOpacity(0.8),
    ),
  );

gmr-renato avatar Mar 17 '25 00:03 gmr-renato