From 73d7d78080270c374e28bb4d8d1c115086f0addb 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 cd07777ca..1b5861a53 100644 --- a/lib/pages/video/pay_coins/view.dart +++ b/lib/pages/video/pay_coins/view.dart @@ -387,8 +387,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,