video_back.dart 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. import 'package:flutter/material.dart';
  2. import 'package:video_player/video_player.dart';
  3. class VideoBack extends StatefulWidget {
  4. VideoBack({Key key}) : super(key: key);
  5. _VideoBackState createState() => _VideoBackState();
  6. }
  7. class _VideoBackState extends State<VideoBack> {
  8. VideoPlayerController _controller;
  9. bool _isPlaying = false;
  10. String url =
  11. "https://www.guojio.com/video/07a7faa1-3696-4af7-aeac-2d6cf6bf25f9.mp4";
  12. @override
  13. void initState() {
  14. // TODO: implement initState
  15. super.initState();
  16. _controller = VideoPlayerController.network(this.url)
  17. // 播放状态
  18. ..addListener(() {
  19. final bool isPlaying = _controller.value.isPlaying;
  20. if (isPlaying != _isPlaying) {
  21. setState(() {
  22. _isPlaying = isPlaying;
  23. });
  24. }
  25. })
  26. // 在初始化完成后必须更新界面
  27. ..initialize().then((_) {
  28. setState(() {});
  29. });
  30. }
  31. @override
  32. Widget build(BuildContext context) {
  33. return Container(
  34. child: _controller.value.isInitialized
  35. // 加载成功
  36. ? AspectRatio(
  37. aspectRatio: _controller.value.aspectRatio,
  38. child: VideoPlayer(_controller),
  39. )
  40. : Container(),
  41. );
  42. }
  43. }