Browse Source

优化完善vip页面

ios
王子贤 4 months ago
parent
commit
3c02478dcb
1 changed files with 44 additions and 0 deletions
  1. 44
      lib/pages/mine/vip_page.dart

44
lib/pages/mine/vip_page.dart

@ -182,6 +182,30 @@ class _VipPageState extends State<VipPage> {
),
)
],
),
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<VipItem> {
}
}
class VipPrivilege extends StatefulWidget {
const VipPrivilege({super.key});
@override
State<VipPrivilege> createState() => _VipPrivilegeState();
}
class _VipPrivilegeState extends State<VipPrivilege> {
@override
Widget build(BuildContext context) {
return Column(
children: [
Image.asset(
Assets.imagesWallet
)
],
);
}
}
Loading…
Cancel
Save