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