chewie
一个充满热情的 Flutter 视频播放器。
video_player 插件提供了对视频播放的底层访问。Chewie 在 video_player 的基础上进行了封装,并提供了友好的 Material 或 Cupertino UI!
演示

安装
在你的 Flutter 项目的 pubspec.yaml 文件中
dependencies:
chewie: <latest_version>
使用它
import 'package:chewie/chewie.dart';
final playerWidget = new Chewie(
new VideoPlayerController.network(
'https://github.flutterdart.cn/assets-for-api-docs/videos/butterfly.mp4'
),
aspectRatio: 3 / 2,
autoPlay: true,
looping: true,
);
示例
请在 example/ 文件夹中运行该应用以开始播放!