From e02ffacfa80a5f4c0055dbbd82b19575192d0306 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=AD=90=E8=B4=A4?= Date: Mon, 15 Dec 2025 15:58:21 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E9=A1=B5=E9=9D=A2=E4=B8=8D?= =?UTF-8?q?=E5=90=8C=E6=9C=BA=E5=9E=8B=E9=80=82=E9=85=8D=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/pages/mine/user_help_center_page.dart | 4 +- lib/pages/mine/vip_page.dart | 60 +++++++++++------------ 2 files changed, 30 insertions(+), 34 deletions(-) diff --git a/lib/pages/mine/user_help_center_page.dart b/lib/pages/mine/user_help_center_page.dart index 85d411c..f2372a2 100644 --- a/lib/pages/mine/user_help_center_page.dart +++ b/lib/pages/mine/user_help_center_page.dart @@ -50,10 +50,8 @@ class _UserHelpCenterPageState extends State { Widget build(BuildContext context) { return Stack( children: [ - Positioned( + Positioned.fill( child: Container( - width: 375.w, - height: 821.h, color: Colors.white, ), ), diff --git a/lib/pages/mine/vip_page.dart b/lib/pages/mine/vip_page.dart index 668868d..5d92208 100644 --- a/lib/pages/mine/vip_page.dart +++ b/lib/pages/mine/vip_page.dart @@ -42,11 +42,10 @@ class _VipPageState extends State { @override Widget build(BuildContext context) { return Stack( + children: [ - Positioned( + Positioned.fill( child: Container( - width: 375.w, - height: 812.h, color: Colors.white, ), ), @@ -216,31 +215,6 @@ class _VipPageState extends State { }), ], ), - Row( - children: [ - - Checkbox( - value: checked, - onChanged: (value) { - checked = value ?? false; - setState(() { - - }); - }, - activeColor: const Color.fromRGBO(117, 98, 249, 1), - side: const BorderSide(color: Colors.grey), - shape: const CircleBorder(), - materialTapTargetSize: MaterialTapTargetSize.shrinkWrap, - ), - Text( - "我已阅读并同意《会员购买协议》", - style: TextStyle( - fontSize: 11.w, - color: const Color.fromRGBO(189, 189, 189, 1) - ), - ) - ], - ), Row( children: [ Text( @@ -388,7 +362,7 @@ class _VipPageState extends State { }); }), Container( - width: 80.w, + width: 100.w, height: 30.w, padding: EdgeInsets.symmetric( horizontal: 12.w @@ -410,7 +384,7 @@ class _VipPageState extends State { width: 17.w, ), Text( - "支付宝", + "支付宝支付", style: TextStyle( fontSize: 11.w, fontWeight: FontWeight.w500 @@ -426,7 +400,31 @@ class _VipPageState extends State { }), ], ), - SizedBox(height: 10.w,), + Row( + children: [ + + Checkbox( + value: checked, + onChanged: (value) { + checked = value ?? false; + setState(() { + + }); + }, + activeColor: const Color.fromRGBO(117, 98, 249, 1), + side: const BorderSide(color: Colors.grey), + shape: const CircleBorder(), + materialTapTargetSize: MaterialTapTargetSize.shrinkWrap, + ), + Text( + "我已阅读并同意《会员购买协议》", + style: TextStyle( + fontSize: 11.w, + color: const Color.fromRGBO(189, 189, 189, 1) + ), + ) + ], + ), Container( width: 350.w, height: 45.w,