geyan 5 years ago
parent
commit
2c8438ca9d

+ 1 - 0
android/app/src/main/AndroidManifest.xml

@@ -29,5 +29,6 @@
                 <category android:name="android.intent.category.LAUNCHER"/>
                 <category android:name="android.intent.category.LAUNCHER"/>
             </intent-filter>
             </intent-filter>
         </activity>
         </activity>
+        <uses-permission android:name="android.permission.INTERNET"/>
     </application>
     </application>
 </manifest>
 </manifest>

+ 1 - 0
ios/Flutter/Debug.xcconfig

@@ -1 +1,2 @@
+#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
 #include "Generated.xcconfig"
 #include "Generated.xcconfig"

+ 1 - 0
ios/Flutter/Release.xcconfig

@@ -1 +1,2 @@
+#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
 #include "Generated.xcconfig"
 #include "Generated.xcconfig"

+ 77 - 0
ios/Podfile

@@ -0,0 +1,77 @@
+# Using a CDN with CocoaPods 1.7.2 or later can save a lot of time on pod installation, but it's experimental rather than the default.
+# source 'https://cdn.cocoapods.org/'
+
+# Uncomment this line to define a global platform for your project
+# platform :ios, '9.0'
+
+# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
+ENV['COCOAPODS_DISABLE_STATS'] = 'true'
+
+project 'Runner', {
+  'Debug' => :debug,
+  'Profile' => :release,
+  'Release' => :release,
+}
+
+def parse_KV_file(file, separator='=')
+  file_abs_path = File.expand_path(file)
+  if !File.exists? file_abs_path
+    return [];
+  end
+  pods_ary = []
+  skip_line_start_symbols = ["#", "/"]
+  File.foreach(file_abs_path) { |line|
+      next if skip_line_start_symbols.any? { |symbol| line =~ /^\s*#{symbol}/ }
+      plugin = line.split(pattern=separator)
+      if plugin.length == 2
+        podname = plugin[0].strip()
+        path = plugin[1].strip()
+        podpath = File.expand_path("#{path}", file_abs_path)
+        pods_ary.push({:name => podname, :path => podpath});
+      else
+        puts "Invalid plugin specification: #{line}"
+      end
+  }
+  return pods_ary
+end
+
+target 'Runner' do
+  use_frameworks!
+
+  # Prepare symlinks folder. We use symlinks to avoid having Podfile.lock
+  # referring to absolute paths on developers' machines.
+  system('rm -rf .symlinks')
+  system('mkdir -p .symlinks/plugins')
+
+  # Flutter Pods
+  generated_xcode_build_settings = parse_KV_file('./Flutter/Generated.xcconfig')
+  if generated_xcode_build_settings.empty?
+    puts "Generated.xcconfig must exist. If you're running pod install manually, make sure flutter pub get is executed first."
+  end
+  generated_xcode_build_settings.map { |p|
+    if p[:name] == 'FLUTTER_FRAMEWORK_DIR'
+      symlink = File.join('.symlinks', 'flutter')
+      File.symlink(File.dirname(p[:path]), symlink)
+      pod 'Flutter', :path => File.join(symlink, File.basename(p[:path]))
+    end
+  }
+
+  # Plugin Pods
+  plugin_pods = parse_KV_file('../.flutter-plugins')
+  plugin_pods.map { |p|
+    symlink = File.join('.symlinks', 'plugins', p[:name])
+    File.symlink(p[:path], symlink)
+    pod p[:name], :path => File.join(symlink, 'ios')
+  }
+end
+
+# Prevent Cocoapods from embedding a second Flutter framework and causing an error with the new Xcode build system.
+install! 'cocoapods', :disable_input_output_paths => true
+
+post_install do |installer|
+  installer.pods_project.targets.each do |target|
+    target.build_configurations.each do |config|
+      config.build_settings['ENABLE_BITCODE'] = 'NO'
+    end
+  end
+end

+ 22 - 0
ios/Podfile.lock

@@ -0,0 +1,22 @@
+PODS:
+  - Flutter (1.0.0)
+  - video_player (0.0.1):
+    - Flutter
+
+DEPENDENCIES:
+  - Flutter (from `.symlinks/flutter/ios`)
+  - video_player (from `.symlinks/plugins/video_player/ios`)
+
+EXTERNAL SOURCES:
+  Flutter:
+    :path: ".symlinks/flutter/ios"
+  video_player:
+    :path: ".symlinks/plugins/video_player/ios"
+
+SPEC CHECKSUMS:
+  Flutter: 0e3d915762c693b495b44d77113d4970485de6ec
+  video_player: 3964090a33353060ed7f58aa6427c7b4b208ec21
+
+PODFILE CHECKSUM: 10ae9c18d12c9ffc2275c9a159a3b1e281990db0
+
+COCOAPODS: 1.7.5

+ 66 - 1
ios/Runner.xcodeproj/project.pbxproj

@@ -11,6 +11,7 @@
 		3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
 		3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
 		3B80C3941E831B6300D905FE /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; };
 		3B80C3941E831B6300D905FE /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; };
 		3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
 		3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
+		604C5850D878DB6F044AEF77 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 722C26CDBD3C591472F82773 /* Pods_Runner.framework */; };
 		74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
 		74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
 		9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; };
 		9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; };
 		9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
 		9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
@@ -38,8 +39,12 @@
 /* Begin PBXFileReference section */
 /* Begin PBXFileReference section */
 		1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
 		1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
 		1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
 		1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
+		1D316F3E638415790BE1439B /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
 		3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
 		3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
 		3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = "<group>"; };
 		3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = "<group>"; };
+		4019BE41A61CCF7EF6BB2649 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
+		54C773278ECE4CC8A8870A9C /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
+		722C26CDBD3C591472F82773 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
 		74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
 		74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
 		74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
 		74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
 		7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
 		7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
@@ -60,12 +65,21 @@
 			files = (
 			files = (
 				9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */,
 				9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */,
 				3B80C3941E831B6300D905FE /* App.framework in Frameworks */,
 				3B80C3941E831B6300D905FE /* App.framework in Frameworks */,
+				604C5850D878DB6F044AEF77 /* Pods_Runner.framework in Frameworks */,
 			);
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 			runOnlyForDeploymentPostprocessing = 0;
 		};
 		};
 /* End PBXFrameworksBuildPhase section */
 /* End PBXFrameworksBuildPhase section */
 
 
 /* Begin PBXGroup section */
 /* Begin PBXGroup section */
+		8423D0A36C799C525D07A0EF /* Frameworks */ = {
+			isa = PBXGroup;
+			children = (
+				722C26CDBD3C591472F82773 /* Pods_Runner.framework */,
+			);
+			name = Frameworks;
+			sourceTree = "<group>";
+		};
 		9740EEB11CF90186004384FC /* Flutter */ = {
 		9740EEB11CF90186004384FC /* Flutter */ = {
 			isa = PBXGroup;
 			isa = PBXGroup;
 			children = (
 			children = (
@@ -85,6 +99,8 @@
 				9740EEB11CF90186004384FC /* Flutter */,
 				9740EEB11CF90186004384FC /* Flutter */,
 				97C146F01CF9000F007C117D /* Runner */,
 				97C146F01CF9000F007C117D /* Runner */,
 				97C146EF1CF9000F007C117D /* Products */,
 				97C146EF1CF9000F007C117D /* Products */,
+				CDEBBB0FDF15C16076542746 /* Pods */,
+				8423D0A36C799C525D07A0EF /* Frameworks */,
 			);
 			);
 			sourceTree = "<group>";
 			sourceTree = "<group>";
 		};
 		};
@@ -119,6 +135,17 @@
 			name = "Supporting Files";
 			name = "Supporting Files";
 			sourceTree = "<group>";
 			sourceTree = "<group>";
 		};
 		};
+		CDEBBB0FDF15C16076542746 /* Pods */ = {
+			isa = PBXGroup;
+			children = (
+				4019BE41A61CCF7EF6BB2649 /* Pods-Runner.debug.xcconfig */,
+				1D316F3E638415790BE1439B /* Pods-Runner.release.xcconfig */,
+				54C773278ECE4CC8A8870A9C /* Pods-Runner.profile.xcconfig */,
+			);
+			name = Pods;
+			path = Pods;
+			sourceTree = "<group>";
+		};
 /* End PBXGroup section */
 /* End PBXGroup section */
 
 
 /* Begin PBXNativeTarget section */
 /* Begin PBXNativeTarget section */
@@ -126,12 +153,14 @@
 			isa = PBXNativeTarget;
 			isa = PBXNativeTarget;
 			buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
 			buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
 			buildPhases = (
 			buildPhases = (
+				E7D294A0D6B8678EA525B583 /* [CP] Check Pods Manifest.lock */,
 				9740EEB61CF901F6004384FC /* Run Script */,
 				9740EEB61CF901F6004384FC /* Run Script */,
 				97C146EA1CF9000F007C117D /* Sources */,
 				97C146EA1CF9000F007C117D /* Sources */,
 				97C146EB1CF9000F007C117D /* Frameworks */,
 				97C146EB1CF9000F007C117D /* Frameworks */,
 				97C146EC1CF9000F007C117D /* Resources */,
 				97C146EC1CF9000F007C117D /* Resources */,
 				9705A1C41CF9048500538489 /* Embed Frameworks */,
 				9705A1C41CF9048500538489 /* Embed Frameworks */,
 				3B06AD1E1E4923F5004D2608 /* Thin Binary */,
 				3B06AD1E1E4923F5004D2608 /* Thin Binary */,
+				E25D9A001ACCDFBD9456B371 /* [CP] Embed Pods Frameworks */,
 			);
 			);
 			buildRules = (
 			buildRules = (
 			);
 			);
@@ -219,6 +248,43 @@
 			shellPath = /bin/sh;
 			shellPath = /bin/sh;
 			shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
 			shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
 		};
 		};
+		E25D9A001ACCDFBD9456B371 /* [CP] Embed Pods Frameworks */ = {
+			isa = PBXShellScriptBuildPhase;
+			buildActionMask = 2147483647;
+			files = (
+			);
+			inputPaths = (
+			);
+			name = "[CP] Embed Pods Frameworks";
+			outputPaths = (
+			);
+			runOnlyForDeploymentPostprocessing = 0;
+			shellPath = /bin/sh;
+			shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
+			showEnvVarsInLog = 0;
+		};
+		E7D294A0D6B8678EA525B583 /* [CP] Check Pods Manifest.lock */ = {
+			isa = PBXShellScriptBuildPhase;
+			buildActionMask = 2147483647;
+			files = (
+			);
+			inputFileListPaths = (
+			);
+			inputPaths = (
+				"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+				"${PODS_ROOT}/Manifest.lock",
+			);
+			name = "[CP] Check Pods Manifest.lock";
+			outputFileListPaths = (
+			);
+			outputPaths = (
+				"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
+			);
+			runOnlyForDeploymentPostprocessing = 0;
+			shellPath = /bin/sh;
+			shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n    # print error to STDERR\n    echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n    exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+			showEnvVarsInLog = 0;
+		};
 /* End PBXShellScriptBuildPhase section */
 /* End PBXShellScriptBuildPhase section */
 
 
 /* Begin PBXSourcesBuildPhase section */
 /* Begin PBXSourcesBuildPhase section */
@@ -513,7 +579,6 @@
 			defaultConfigurationName = Release;
 			defaultConfigurationName = Release;
 		};
 		};
 /* End XCConfigurationList section */
 /* End XCConfigurationList section */
-
 	};
 	};
 	rootObject = 97C146E61CF9000F007C117D /* Project object */;
 	rootObject = 97C146E61CF9000F007C117D /* Project object */;
 }
 }

+ 3 - 0
ios/Runner.xcworkspace/contents.xcworkspacedata

@@ -4,4 +4,7 @@
    <FileRef
    <FileRef
       location = "group:Runner.xcodeproj">
       location = "group:Runner.xcodeproj">
    </FileRef>
    </FileRef>
+   <FileRef
+      location = "group:Pods/Pods.xcodeproj">
+   </FileRef>
 </Workspace>
 </Workspace>

+ 6 - 0
ios/Runner/Info.plist

@@ -42,4 +42,10 @@
 	<key>UIViewControllerBasedStatusBarAppearance</key>
 	<key>UIViewControllerBasedStatusBarAppearance</key>
 	<false/>
 	<false/>
 </dict>
 </dict>
+
 </plist>
 </plist>
+<key>NSAppTransportSecurity</key>
+<dict>
+  <key>NSAllowsArbitraryLoads</key>
+  <true/>
+</dict>

+ 161 - 118
lib/main.dart

@@ -1,5 +1,6 @@
 import 'package:flutter/material.dart';
 import 'package:flutter/material.dart';
 import 'package:marquee/marquee.dart';
 import 'package:marquee/marquee.dart';
+import 'package:marquee_flutter/marquee_flutter.dart';
 import 'package:video_player/video_player.dart';
 import 'package:video_player/video_player.dart';
 
 
 void main() {
 void main() {
@@ -15,21 +16,23 @@ class MyApp extends StatelessWidget {
       title: "某音",
       title: "某音",
       home: Scaffold(
       home: Scaffold(
         body: Container(
         body: Container(
-          decoration: BoxDecoration(color: Colors.grey[500]),
-          child: Stack(
-            children: [
-              VideoBack(),
-              Home(),
-            ]
-          ),
+          decoration: BoxDecoration(color: Colors.black),
+          child: Stack(children: [
+            VideoBack(),
+            Home(),
+          ]),
         ),
         ),
-        bottomNavigationBar: BottomAppBar(
-          child: Container(
-            height: 60,
+        bottomNavigationBar: Container(
             decoration: BoxDecoration(color: Colors.black),
             decoration: BoxDecoration(color: Colors.black),
-            child: BtmBar(),
-          ),
-        ),
+            child: SafeArea(
+                child: BottomAppBar(
+              child: Container(
+                decoration: BoxDecoration(color: Colors.black),
+                height: 60,
+                // decoration: BoxDecoration(color: Colors.black),
+                child: BtmBar(),
+              ),
+            ))),
       ),
       ),
     );
     );
   }
   }
@@ -43,35 +46,40 @@ class VideoBack extends StatefulWidget {
 
 
 class _VideoBackState extends State<VideoBack> {
 class _VideoBackState extends State<VideoBack> {
   VideoPlayerController _controller;
   VideoPlayerController _controller;
-    bool _isPlaying = false;
-    String url = "https://www.guojio.com/video/07a7faa1-3696-4af7-aeac-2d6cf6bf25f9.mp4";
+  bool _isPlaying = false;
+  String url =
+      "https://www.guojio.com/video/07a7faa1-3696-4af7-aeac-2d6cf6bf25f9.mp4";
 
 
-    @override
+  @override
   void initState() {
   void initState() {
     // TODO: implement initState
     // TODO: implement initState
     super.initState();
     super.initState();
-        _controller = VideoPlayerController.network(this.url)
-        // 播放状态
-        ..addListener(() {
-            final bool isPlaying = _controller.value.isPlaying;
-            if (isPlaying != _isPlaying) {
-                setState(() { _isPlaying = isPlaying; });
-            }
-        })
-        // 在初始化完成后必须更新界面
-        ..initialize().then((_) {
-            setState(() {});
-        });
+    _controller = VideoPlayerController.network(this.url)
+      // 播放状态
+      ..addListener(() {
+        final bool isPlaying = _controller.value.isPlaying;
+        if (isPlaying != _isPlaying) {
+          setState(() {
+            _isPlaying = isPlaying;
+          });
+        }
+      })
+      // 在初始化完成后必须更新界面
+      ..initialize().then((_) {
+        setState(() {});
+      });
   }
   }
+
   @override
   @override
   Widget build(BuildContext context) {
   Widget build(BuildContext context) {
     return Container(
     return Container(
-       child:  _controller.value.initialized
-                    // 加载成功
-                    ? new AspectRatio(
-                        aspectRatio: _controller.value.aspectRatio,
-                        child: VideoPlayer(_controller),
-                    ) : new Container(),
+      child: _controller.value.initialized
+          // 加载成功
+          ? new AspectRatio(
+              aspectRatio: _controller.value.aspectRatio,
+              child: VideoPlayer(_controller),
+            )
+          : new Container(),
     );
     );
   }
   }
 }
 }
@@ -86,12 +94,13 @@ class Home extends StatelessWidget {
     return Stack(children: [
     return Stack(children: [
       Positioned(
       Positioned(
         top: 0,
         top: 0,
-        height: 120,
+        // height: 120,
         width: screenWidth,
         width: screenWidth,
-        child: Container(
+        child: SafeArea(
+            child: Container(
           // decoration: BoxDecoration(color: Colors.pinkAccent),
           // decoration: BoxDecoration(color: Colors.pinkAccent),
           child: TopTab(),
           child: TopTab(),
-        ),
+        )),
       ),
       ),
       Positioned(
       Positioned(
         bottom: 0,
         bottom: 0,
@@ -104,19 +113,19 @@ class Home extends StatelessWidget {
       ),
       ),
       Positioned(
       Positioned(
         right: 0,
         right: 0,
-        width: 0.25 * screenWidth,
-        height: 0.4 * screenHeight,
-        top: 0.32 * screenHeight,
+        width: 0.2 * screenWidth,
+        height: 0.37 * screenHeight,
+        top: 0.4 * screenHeight,
         child: Container(
         child: Container(
           // decoration: BoxDecoration(color: Colors.orangeAccent),
           // decoration: BoxDecoration(color: Colors.orangeAccent),
           child: getButtonList(),
           child: getButtonList(),
         ),
         ),
       ),
       ),
       Positioned(
       Positioned(
-        bottom: 20,
+        bottom: 10,
         right: 0,
         right: 0,
-        width: 0.25 * screenWidth,
-        height: 0.25 * screenWidth,
+        width: 0.2 * screenWidth,
+        height: 0.2 * screenWidth,
         child: Container(
         child: Container(
           width: 20,
           width: 20,
           height: 20,
           height: 20,
@@ -148,43 +157,37 @@ class _TopTabState extends State<TopTab> with SingleTickerProviderStateMixin {
   Widget build(BuildContext context) {
   Widget build(BuildContext context) {
     return Row(
     return Row(
       crossAxisAlignment: CrossAxisAlignment.center,
       crossAxisAlignment: CrossAxisAlignment.center,
-      children: <Widget>[
-        Expanded(
-          flex: 2,
-          child: Icon(
-            Icons.search,
-            size: 30,
-            color: Colors.white,
-          ),
+      mainAxisAlignment: MainAxisAlignment.spaceBetween,
+      children: [
+        SizedBox(
+          width: 10,
         ),
         ),
-        Expanded(
-          flex: 8,
-          child: Container(
-              padding: EdgeInsets.symmetric(horizontal: 50),
-              width: 240,
-              child: TabBar(
-                indicatorColor: Colors.white,
-                labelStyle: TextStyle(color: Colors.white, fontSize: 25),
-                indicatorPadding: EdgeInsets.symmetric(horizontal: 25),
-                unselectedLabelStyle:
-                    TextStyle(color: Colors.grey[700], fontSize: 20),
-                controller: _controller,
-                tabs: <Widget>[Text("关注"), Text("推荐")],
-              )),
+        Icon(
+          Icons.search,
+          size: 30,
+          color: Colors.white,
+        ),
+        Container(
+            child: Container(
+                padding: EdgeInsets.symmetric(horizontal: 50),
+                width: 280,
+                child: TabBar(
+                  indicatorColor: Colors.white,
+                  labelStyle: TextStyle(color: Colors.white, fontSize: 20),
+                  indicatorPadding: EdgeInsets.symmetric(horizontal: 30),
+                  unselectedLabelStyle:
+                      TextStyle(color: Colors.grey[700], fontSize: 18),
+                  controller: _controller,
+                  tabs: <Widget>[Text("关注"), Text("推荐")],
+                ))),
+        Icon(
+          Icons.live_tv,
+          size: 30,
+          color: Colors.white,
+        ),
+        SizedBox(
+          width: 10,
         ),
         ),
-        Flexible(
-          flex: 2,
-          child: Row(children: [
-            SizedBox(
-              width: 20,
-            ),
-            Icon(
-              Icons.live_tv,
-              size: 30,
-              color: Colors.white,
-            ),
-          ]),
-        )
       ],
       ],
     );
     );
   }
   }
@@ -213,8 +216,8 @@ class BtmBar extends StatelessWidget {
 getBtmTextWidget(String content, bool ifSelected) {
 getBtmTextWidget(String content, bool ifSelected) {
   return Text("$content",
   return Text("$content",
       style: ifSelected
       style: ifSelected
-          ? TextStyle(fontSize: 18, color: Colors.white)
-          : TextStyle(fontSize: 18, color: Colors.grey[600]));
+          ? TextStyle(fontSize: 16, color: Colors.white,fontWeight: FontWeight.bold)
+          : TextStyle(fontSize: 16, color: Colors.grey[600],fontWeight: FontWeight.bold));
 }
 }
 
 
 class AddIcon extends StatelessWidget {
 class AddIcon extends StatelessWidget {
@@ -222,23 +225,26 @@ class AddIcon extends StatelessWidget {
 
 
   @override
   @override
   Widget build(BuildContext context) {
   Widget build(BuildContext context) {
+    double iconHeight=30;
+    double totalWidth=50;
+    double eachSide=3;
     return Container(
     return Container(
       // decoration: BoxDecoration(),
       // decoration: BoxDecoration(),
-      height: 35,
-      width: 60,
+      height: iconHeight,
+      width: 50,
       child: Stack(
       child: Stack(
         children: <Widget>[
         children: <Widget>[
           Positioned(
           Positioned(
-            height: 35,
-            width: 50,
+            height: iconHeight,
+            width: totalWidth-eachSide,
             child: Container(
             child: Container(
               decoration: BoxDecoration(
               decoration: BoxDecoration(
                   color: Colors.cyan, borderRadius: BorderRadius.circular(10)),
                   color: Colors.cyan, borderRadius: BorderRadius.circular(10)),
             ),
             ),
           ),
           ),
           Positioned(
           Positioned(
-            height: 35,
-            width: 50,
+            height: iconHeight,
+            width: totalWidth-eachSide,
             right: 0,
             right: 0,
             child: Container(
             child: Container(
               decoration: BoxDecoration(
               decoration: BoxDecoration(
@@ -247,9 +253,9 @@ class AddIcon extends StatelessWidget {
             ),
             ),
           ),
           ),
           Positioned(
           Positioned(
-            height: 35,
-            width: 50,
-            right: 5,
+            height: iconHeight,
+            width: totalWidth-eachSide*2,
+            right: eachSide,
             child: Container(
             child: Container(
               decoration: BoxDecoration(
               decoration: BoxDecoration(
                   color: Colors.white, borderRadius: BorderRadius.circular(10)),
                   color: Colors.white, borderRadius: BorderRadius.circular(10)),
@@ -272,30 +278,47 @@ class BtnContent extends StatelessWidget {
         mainAxisSize: MainAxisSize.min,
         mainAxisSize: MainAxisSize.min,
         children: <Widget>[
         children: <Widget>[
           ListTile(
           ListTile(
-            title: Text("@人民日报",style: TextStyle(color: Colors.white),),
-            subtitle: Text("奥斯卡答复哈士大夫哈师大发输电和健康阿萨德鸿福路口氨基酸的鸿福路口啊,奥斯卡答复哈士大夫哈师大发输电和健康阿萨德鸿福路口氨基酸的鸿福路口啊",style: TextStyle(color: Colors.white,),maxLines: 3,overflow: TextOverflow.ellipsis,),
+            title: Text(
+              "@人民日报",
+              style: TextStyle(color: Colors.white,fontSize: 16),
+            ),
+            subtitle: Text(
+              "奥斯卡答复哈士大夫哈师大发输电和健康阿萨德鸿福路口氨基酸的鸿福路口啊,奥斯卡答复哈士大夫哈师大发输电和健康阿萨德鸿福路口氨基酸的鸿福路口啊",
+              style: TextStyle(
+                color: Colors.white,
+                fontSize: 16
+              ),
+              maxLines: 3,
+              overflow: TextOverflow.ellipsis,
+            ),
           ),
           ),
           Row(
           Row(
             children: <Widget>[
             children: <Widget>[
-              SizedBox(width: 10,),
-              Icon(Icons.music_note),
+              SizedBox(
+                width: 10,
+              ),
+              Icon(Icons.music_note,color: Colors.white,),
               // Marquee(text: "",),
               // Marquee(text: "",),
-              // Flexible(
-              //   child: Marquee(
-              //     text: '人民日报创作的一些比较',
-              //     style: TextStyle(fontWeight: FontWeight.bold),
-              //     scrollAxis: Axis.horizontal,
-              //     crossAxisAlignment: CrossAxisAlignment.start,
-              //     blankSpace: 20.0,
-              //     velocity: 100.0,
-              //     pauseAfterRound: Duration(seconds: 1),
-              //     startPadding: 10.0,
-              //     accelerationDuration: Duration(seconds: 1),
-              //     accelerationCurve: Curves.linear,
-              //     decelerationDuration: Duration(milliseconds: 500),
-              //     decelerationCurve: Curves.easeOut,
-              //   )
-              // )
+              
+                Container(
+                  width: 200,
+                  height: 20,
+                  child: MarqueeWidget(
+                    text: '人民日报创作的一些比较有意思的东西',
+                    textStyle: TextStyle(fontWeight: FontWeight.bold,color: Colors.white,fontSize: 16),
+                    // scrollAxis: Axis.horizontal,
+                    // crossAxisAlignment: CrossAxisAlignment.start,
+                    // blankSpace: 20.0,
+                    // velocity: 100.0,
+                    // pauseAfterRound: Duration(seconds: 1),
+                    // startPadding: 10.0,
+                    // accelerationDuration: Duration(seconds: 1),
+                    // accelerationCurve: Curves.linear,
+                    // decelerationDuration: Duration(milliseconds: 500),
+                    // decelerationCurve: Curves.easeOut,
+                  )
+                )
+              
             ],
             ],
           )
           )
         ],
         ],
@@ -327,8 +350,10 @@ class _RotateAlbumState extends State<RotateAlbum>
           }
           }
         }),
         }),
       child: Container(
       child: Container(
-        child: CircleAvatar(backgroundImage: NetworkImage("https://gss1.bdstatic.com/9vo3dSag_xI4khGkpoWK1HF6hhy/baike/s%3D500/sign=dde475320ee9390152028d3e4bec54f9/d009b3de9c82d1586d8294a38f0a19d8bc3e42a4.jpg"),)
-      ),
+          child: CircleAvatar(
+        backgroundImage: NetworkImage(
+            "https://gss1.bdstatic.com/9vo3dSag_xI4khGkpoWK1HF6hhy/baike/s%3D500/sign=dde475320ee9390152028d3e4bec54f9/d009b3de9c82d1586d8294a38f0a19d8bc3e42a4.jpg"),
+      )),
     );
     );
     _controller.forward(from: 0.0);
     _controller.forward(from: 0.0);
   }
   }
@@ -336,15 +361,16 @@ class _RotateAlbumState extends State<RotateAlbum>
   @override
   @override
   Widget build(BuildContext context) {
   Widget build(BuildContext context) {
     return Container(
     return Container(
-
-        padding: EdgeInsets.all(15),
+      padding: EdgeInsets.all(18),
       child: animation,
       child: animation,
     );
     );
   }
   }
 }
 }
 
 
 getButtonList() {
 getButtonList() {
+  double iconSize=40;
   return Column(
   return Column(
+
     mainAxisAlignment: MainAxisAlignment.spaceAround,
     mainAxisAlignment: MainAxisAlignment.spaceAround,
     children: <Widget>[
     children: <Widget>[
       Container(
       Container(
@@ -365,7 +391,9 @@ getButtonList() {
                 child: Container(
                 child: Container(
                   width: 25,
                   width: 25,
                   height: 25,
                   height: 25,
-                  decoration: BoxDecoration(color: Colors.redAccent,borderRadius: BorderRadius.circular(25)),
+                  decoration: BoxDecoration(
+                      color: Colors.redAccent,
+                      borderRadius: BorderRadius.circular(25)),
                   child: Icon(
                   child: Icon(
                     Icons.add,
                     Icons.add,
                     size: 20,
                     size: 20,
@@ -377,15 +405,27 @@ getButtonList() {
           )),
           )),
       IconText(
       IconText(
         text: "999w",
         text: "999w",
-        icon: Icon(Icons.favorite,size: 50,color: Colors.redAccent,),
+        icon: Icon(
+          Icons.favorite,
+          size: iconSize,
+          color: Colors.redAccent,
+        ),
       ),
       ),
       IconText(
       IconText(
         text: "999w",
         text: "999w",
-        icon: Icon(Icons.feedback,size: 50,color: Colors.white,),
+        icon: Icon(
+          Icons.feedback,
+          size: iconSize,
+          color: Colors.white,
+        ),
       ),
       ),
       IconText(
       IconText(
         text: "999w",
         text: "999w",
-        icon: Icon(Icons.reply,size: 50,color: Colors.white,),
+        icon: Icon(
+          Icons.reply,
+          size: iconSize,
+          color: Colors.white,
+        ),
       ),
       ),
     ],
     ],
   );
   );
@@ -402,7 +442,10 @@ class IconText extends StatelessWidget {
         mainAxisSize: MainAxisSize.min,
         mainAxisSize: MainAxisSize.min,
         children: <Widget>[
         children: <Widget>[
           icon,
           icon,
-          Text(text,style: TextStyle(color: Colors.white),),
+          Text(
+            text,
+            style: TextStyle(color: Colors.white),
+          ),
         ],
         ],
       ),
       ),
     );
     );

+ 7 - 0
pubspec.lock

@@ -53,6 +53,13 @@ packages:
       url: "https://pub.flutter-io.cn"
       url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "1.3.0"
     version: "1.3.0"
+  marquee_flutter:
+    dependency: "direct main"
+    description:
+      name: marquee_flutter
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.1.4"
   matcher:
   matcher:
     dependency: transitive
     dependency: transitive
     description:
     description:

+ 1 - 0
pubspec.yaml

@@ -25,6 +25,7 @@ dependencies:
   cupertino_icons: ^0.1.2
   cupertino_icons: ^0.1.2
   marquee: 
   marquee: 
   video_player: 
   video_player: 
+  marquee_flutter:
 
 
 dev_dependencies:
 dev_dependencies:
   flutter_test:
   flutter_test: