better_video_player

Advanced video player based on video_player.

Install Started

  1. Add this to your pubspec.yaml file:
dependencies:
  better_video_player: ^1.2.9
  1. Install it
$ flutter packages get

Normal usage

AspectRatio(
  aspectRatio: 16.0 / 9.0,
  child: BetterVideoPlayer(
    controller: BetterVideoPlayerController.configuration(
      BetterVideoPlayerConfiguration(
        placeholder: CachedNetworkImage(
          imageUrl: kVideoThumbnail,
          fit: BoxFit.cover,
        ),
      ),
    ),
    dataSource: BetterVideoPlayerDataSource(
      BetterVideoPlayerDataSourceType.network,
      kVideoUrl,
    ),
  ),
)

Feature

  • x placeholder
  • x fullscreen
  • x progress indicator
  • x tip when wifi interrupted
  • x auto play when resume
  • x null safety