diff --git a/lib/pages/video/detail/view.dart b/lib/pages/video/detail/view.dart index 7da335e18..e2a949199 100644 --- a/lib/pages/video/detail/view.dart +++ b/lib/pages/video/detail/view.dart @@ -715,7 +715,9 @@ class _VideoDetailPageState extends State final double videoWidth = videoHeight * 9 / 16; return Row( children: [ - Expanded(child: videoIntro()), + Expanded( + child: + isFullScreen ? const SizedBox.shrink() : videoIntro()), SizedBox( height: videoHeight, width: isFullScreen ? context.width : videoWidth,