You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

54 lines
1.6 KiB

import 'package:dating_touchme_app/components/page_appbar.dart';
import 'package:dating_touchme_app/extension/ex_widget.dart';
import 'package:dating_touchme_app/pages/mine/renew_manage_page.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:get/get.dart';
import 'package:get/get_core/src/get_main.dart';
class VipManagePage extends StatefulWidget {
const VipManagePage({super.key});
@override
State<VipManagePage> createState() => _VipManagePageState();
}
class _VipManagePageState extends State<VipManagePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: PageAppbar(title: "会员特权管理"),
body: SingleChildScrollView(
child: Column(
children: [
Container(
padding: EdgeInsets.symmetric(
vertical: 20.w,
horizontal: 14.w
),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
"自动续费管理",
style: TextStyle(
fontSize: 13.w,
fontWeight: FontWeight.w500
),
),
Icon(
Icons.keyboard_arrow_right,
size: 20.w,
color: const Color.fromRGBO(191, 191, 191, 1),
)
],
),
).onTap((){
Get.to(() => RenewManagePage());
})
],
),
),
);
}
}