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 + ) + ], + ); + } +} +