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 createState() => _VipManagePageState(); } class _VipManagePageState extends State { @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()); }) ], ), ), ); } }