日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Flutter 视频播放器组件封装

發布時間:2023/12/14 编程问答 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Flutter 视频播放器组件封装 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

添加插件

pubspec.yaml

chewie: ^1.0.0 video_player: ^2.0.2

封裝播放器

video_view.dart

class VideoView extends StatefulWidget {final String url; // 播放地址final String cover; // 封面final bool autoPlay; // 是否自動播放final bool looping; // 是否循環final double aspectRatio; // 寬高比const VideoView(this.url,{Key key, this.cover, this.autoPlay, this.looping, this.aspectRatio}): super(key: key);@override_VideoViewState createState() => _VideoViewState(); }class _VideoViewState extends State<VideoView> {VideoPlayerController _videoPlayerController;ChewieController _chewieController;// 封面 (FractionallySizedBox:可控制組件在水平/垂直方向上填充滿父容器)get _placeHolder => FractionallySizedBox(widthFactor: 1,child: cacheImage(widget.cover),);// 進度條顏色設置get _progressColors => ChewieProgressColors(playedColor: primary,bufferedColor: primary,handleColor: Colors.grey,backgroundColor: primary[50],);@overridevoid initState() {super.initState();_videoPlayerController = VideoPlayerController.network(widget.url);_chewieController = ChewieController(//要播放的視頻的控制器videoPlayerController: _videoPlayerController,// 縮放比aspectRatio: widget.aspectRatio,// 是否自動播放autoPlay: widget.autoPlay,// 封面looping: widget.looping,// 進度條顏色placeholder: _placeHolder,// 進度條顏色materialProgressColors: _progressColors,// 是否靜音allowMuting: false,// 是否顯示播放速度allowPlaybackSpeedChanging: false,customControls: MaterialControls(showLoadingOnInitialize: false,showBigPlayIcon: false,bottomGradient: blackLinearGradient(),));}@overridevoid dispose() {super.dispose();_videoPlayerController.dispose();_chewieController.dispose();}@overrideWidget build(BuildContext context) {double screenWidth = MediaQuery.of(context).size.width; // 播放器寬度double screenHeight = screenWidth / widget.aspectRatio; // 播放器高度return Container(width: screenWidth,height: screenHeight,color: Colors.grey,child: Chewie(controller: _chewieController,),);} }

自定義播放器UI

點擊查看自定義播放器UI源碼

總結

以上是生活随笔為你收集整理的Flutter 视频播放器组件封装的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。