Commit e3f2bf595fd515a39fe341a4dc911d4159eba8d1

Authored by liangchengyou
1 parent e5c9e98f

feat:视频播放优化

ios/Runner.xcodeproj/project.pbxproj
... ... @@ -495,7 +495,7 @@
495 495 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
496 496 CLANG_ENABLE_MODULES = YES;
497 497 CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
498   - CURRENT_PROJECT_VERSION = 2;
  498 + CURRENT_PROJECT_VERSION = 4;
499 499 DEVELOPMENT_TEAM = T8P9KW8GWH;
500 500 ENABLE_BITCODE = NO;
501 501 INFOPLIST_FILE = Runner/Info.plist;
... ... @@ -680,7 +680,7 @@
680 680 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
681 681 CLANG_ENABLE_MODULES = YES;
682 682 CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
683   - CURRENT_PROJECT_VERSION = 2;
  683 + CURRENT_PROJECT_VERSION = 4;
684 684 DEVELOPMENT_TEAM = T8P9KW8GWH;
685 685 ENABLE_BITCODE = NO;
686 686 INFOPLIST_FILE = Runner/Info.plist;
... ... @@ -709,7 +709,7 @@
709 709 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
710 710 CLANG_ENABLE_MODULES = YES;
711 711 CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
712   - CURRENT_PROJECT_VERSION = 2;
  712 + CURRENT_PROJECT_VERSION = 4;
713 713 DEVELOPMENT_TEAM = T8P9KW8GWH;
714 714 ENABLE_BITCODE = NO;
715 715 INFOPLIST_FILE = Runner/Info.plist;
... ...
lib/pages/video/lookvideo/look_video_page.dart
... ... @@ -16,9 +16,12 @@ class LookVideoPage extends StatefulWidget {
16 16 class _LookVideoPageState extends State<LookVideoPage> {
17 17 @override
18 18 Widget build(BuildContext context) {
19   - return VideoWidget(
20   - videoUrl: widget.videoUrl??'',
21   - typeTitle: widget.typeTitle,
  19 + return Container(
  20 + color: Colors.white,
  21 + child: VideoWidget(
  22 + videoUrl: widget.videoUrl??'',
  23 + typeTitle: widget.typeTitle,
  24 + ),
22 25 );
23 26 }
24 27 }
25 28 \ No newline at end of file
... ...