Browse Source

with video

todother 5 years ago
parent
commit
e1a451674c
3 changed files with 57 additions and 1 deletions
  1. 48 1
      lib/main.dart
  2. 8 0
      pubspec.lock
  3. 1 0
      pubspec.yaml

+ 48 - 1
lib/main.dart

@@ -1,5 +1,6 @@
 import 'package:flutter/material.dart';
 import 'package:marquee/marquee.dart';
+import 'package:video_player/video_player.dart';
 
 void main() {
   runApp(MyApp());
@@ -15,7 +16,12 @@ class MyApp extends StatelessWidget {
       home: Scaffold(
         body: Container(
           decoration: BoxDecoration(color: Colors.grey[500]),
-          child: Home(),
+          child: Stack(
+            children: [
+              VideoBack(),
+              Home(),
+            ]
+          ),
         ),
         bottomNavigationBar: BottomAppBar(
           child: Container(
@@ -29,6 +35,47 @@ class MyApp extends StatelessWidget {
   }
 }
 
+class VideoBack extends StatefulWidget {
+  VideoBack({Key key}) : super(key: key);
+
+  _VideoBackState createState() => _VideoBackState();
+}
+
+class _VideoBackState extends State<VideoBack> {
+  VideoPlayerController _controller;
+    bool _isPlaying = false;
+    String url = "https://www.guojio.com/video/07a7faa1-3696-4af7-aeac-2d6cf6bf25f9.mp4";
+
+    @override
+  void initState() {
+    // TODO: implement initState
+    super.initState();
+        _controller = VideoPlayerController.network(this.url)
+        // 播放状态
+        ..addListener(() {
+            final bool isPlaying = _controller.value.isPlaying;
+            if (isPlaying != _isPlaying) {
+                setState(() { _isPlaying = isPlaying; });
+            }
+        })
+        // 在初始化完成后必须更新界面
+        ..initialize().then((_) {
+            setState(() {});
+        });
+  }
+  @override
+  Widget build(BuildContext context) {
+    return Container(
+       child:  _controller.value.initialized
+                    // 加载成功
+                    ? new AspectRatio(
+                        aspectRatio: _controller.value.aspectRatio,
+                        child: VideoPlayer(_controller),
+                    ) : new Container(),
+    );
+  }
+}
+
 class Home extends StatelessWidget {
   const Home({Key key}) : super(key: key);
 

+ 8 - 0
pubspec.lock

@@ -149,5 +149,13 @@ packages:
       url: "https://pub.flutter-io.cn"
     source: hosted
     version: "2.0.8"
+  video_player:
+    dependency: "direct main"
+    description:
+      name: video_player
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.10.2+1"
 sdks:
   dart: ">=2.2.2 <3.0.0"
+  flutter: ">=1.5.0 <2.0.0"

+ 1 - 0
pubspec.yaml

@@ -24,6 +24,7 @@ dependencies:
   # Use with the CupertinoIcons class for iOS style icons.
   cupertino_icons: ^0.1.2
   marquee: 
+  video_player: 
 
 dev_dependencies:
   flutter_test: