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,