From 3c02478dcb925ae5ddbb83a5199423447c5c9640 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=AD=90=E8=B4=A4?= Date: Thu, 13 Nov 2025 19:08:43 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=AE=8C=E5=96=84vip?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/pages/mine/vip_page.dart | 44 ++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/lib/pages/mine/vip_page.dart b/lib/pages/mine/vip_page.dart index d2103c6..e2f3d93 100644 --- a/lib/pages/mine/vip_page.dart +++ b/lib/pages/mine/vip_page.dart @@ -182,6 +182,30 @@ class _VipPageState extends State { ), ) ], + ), + SizedBox(height: 25.w,), + Row( + children: [ + Text( + "会员专属特权", + style: TextStyle( + fontSize: 17.w, + fontWeight: FontWeight.w500, + color: const Color.fromRGBO(54, 0, 115, 1) + ), + ) + ], + ), + SizedBox(height: 18.w,), + Container( + padding: EdgeInsets.symmetric( + horizontal: 18.w + ), + child: Row( + children: [ + + ], + ), ) ], ), @@ -261,3 +285,23 @@ class _VipItemState extends State { } } +class VipPrivilege extends StatefulWidget { + const VipPrivilege({super.key}); + + @override + State createState() => _VipPrivilegeState(); +} + +class _VipPrivilegeState extends State { + @override + Widget build(BuildContext context) { + return Column( + children: [ + Image.asset( + Assets.imagesWallet + ) + ], + ); + } +} +