From 4a4602fff90979d6fecc24fdd9c8ba6a249b81f6 Mon Sep 17 00:00:00 2001 From: dom Date: Thu, 4 Jun 2026 19:13:32 +0800 Subject: [PATCH] fix #2295 Signed-off-by: dom --- lib/pages/video/pay_coins/view.dart | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/pages/video/pay_coins/view.dart b/lib/pages/video/pay_coins/view.dart index 14b19ab46..23a118ed4 100644 --- a/lib/pages/video/pay_coins/view.dart +++ b/lib/pages/video/pay_coins/view.dart @@ -386,8 +386,13 @@ class _PayCoinsPageState extends State ], ) else - SizedBox(height: 100, child: _buildCoinWidget(0, 1)), - SizedBox(height: isV ? 25 : 10), + Center( + child: SizedBox(height: 100, child: _buildCoinWidget(0, 1)), + ), + if (isV) + const SizedBox(height: 25) + else + const SizedBox(height: 10), if (_hasCopyright) GestureDetector( behavior: HitTestBehavior.opaque,