diff --git a/frontend/mobile-app/lib/features/profile/presentation/pages/profile_page.dart b/frontend/mobile-app/lib/features/profile/presentation/pages/profile_page.dart index a1eeeecc..fccb9901 100644 --- a/frontend/mobile-app/lib/features/profile/presentation/pages/profile_page.dart +++ b/frontend/mobile-app/lib/features/profile/presentation/pages/profile_page.dart @@ -1723,94 +1723,88 @@ class _ProfilePageState extends ConsumerState { return Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ - // 汇总信息区域 - Row( + // 汇总信息区域 - 竖排布局 + Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ - // 倒计时 - Expanded( - child: Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - const Text( - '24小时倒计时', - style: TextStyle( - fontSize: 12, - fontFamily: 'Inter', - fontWeight: FontWeight.w500, - height: 1.5, - color: Color(0xCC5D4037), - ), + // 待领取倒计时 + Row( + children: [ + const Text( + '待领取', + style: TextStyle( + fontSize: 14, + fontFamily: 'Inter', + fontWeight: FontWeight.w700, + height: 1.5, + color: Color(0xFF5D4037), ), - Text( - _formatCountdown(), - style: const TextStyle( - fontSize: 14, - fontFamily: 'Consolas', - fontWeight: FontWeight.w700, - height: 1.25, - letterSpacing: 0.7, - color: Color(0xFFD4AF37), - ), + ), + const SizedBox(width: 8), + Text( + _formatCountdown(), + style: const TextStyle( + fontSize: 14, + fontFamily: 'Consolas', + fontWeight: FontWeight.w700, + height: 1.5, + letterSpacing: 0.7, + color: Color(0xFFD4AF37), ), - ], - ), + ), + ], ), - // 汇总待领取 USDT - Expanded( - child: Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - const Text( - '待领取 (绿积分)', - style: TextStyle( - fontSize: 12, - fontFamily: 'Inter', - fontWeight: FontWeight.w500, - height: 1.5, - color: Color(0xCC5D4037), - ), + const SizedBox(height: 8), + // 绿积分 + Row( + children: [ + const Text( + '绿积分:', + style: TextStyle( + fontSize: 14, + fontFamily: 'Inter', + fontWeight: FontWeight.w500, + height: 1.5, + color: Color(0xCC5D4037), ), - Text( - _formatNumber(_pendingUsdt), - style: const TextStyle( - fontSize: 16, - fontFamily: 'Inter', - fontWeight: FontWeight.w700, - height: 1.25, - color: Color(0xFF5D4037), - ), + ), + Text( + _formatNumber(_pendingUsdt), + style: const TextStyle( + fontSize: 16, + fontFamily: 'Inter', + fontWeight: FontWeight.w500, + height: 1.25, + color: Color(0xFF5D4037), ), - ], - ), + ), + ], ), - // 汇总待领取算力 - Expanded( - child: Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - const Text( - '待领取 (贡献值)', - style: TextStyle( - fontSize: 12, - fontFamily: 'Inter', - fontWeight: FontWeight.w500, - height: 1.5, - color: Color(0xCC5D4037), - ), + const SizedBox(height: 4), + // 贡献值 + Row( + children: [ + const Text( + '贡献值:', + style: TextStyle( + fontSize: 14, + fontFamily: 'Inter', + fontWeight: FontWeight.w500, + height: 1.5, + color: Color(0xCC5D4037), ), - Text( - _formatNumber(_pendingPower), - style: const TextStyle( - fontSize: 16, - fontFamily: 'Inter', - fontWeight: FontWeight.w700, - height: 1.25, - color: Color(0xFF5D4037), - ), + ), + Text( + _formatNumber(_pendingPower), + style: const TextStyle( + fontSize: 16, + fontFamily: 'Inter', + fontWeight: FontWeight.w500, + height: 1.25, + color: Color(0xFF5D4037), ), - ], - ), + ), + ], ), ], ), @@ -2433,7 +2427,7 @@ class _ProfilePageState extends ConsumerState { crossAxisAlignment: CrossAxisAlignment.start, children: [ const Text( - '已过期 (绿积分)', + '绿积分:', style: TextStyle( fontSize: 14, fontFamily: 'Inter', @@ -2460,7 +2454,7 @@ class _ProfilePageState extends ConsumerState { crossAxisAlignment: CrossAxisAlignment.start, children: [ const Text( - '已过期 (贡献值)', + '贡献值:', style: TextStyle( fontSize: 14, fontFamily: 'Inter',