From ef8d57ddfd1c61077524e819f95b6872b18c9c12 Mon Sep 17 00:00:00 2001 From: bggRGjQaUbCoE Date: Sun, 29 Dec 2024 20:20:00 +0800 Subject: [PATCH] fix: #68 Signed-off-by: bggRGjQaUbCoE --- lib/pages/video/detail/view.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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,