| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401 |
- import 'package:flutter/material.dart';
- import 'package:flutter/services.dart';
- import 'package:flutter_screenutil/flutter_screenutil.dart';
- import 'package:get/get.dart';
- import 'package:nomo/app/base/base_view.dart';
- import 'package:nomo/app/widgets/click_opacity.dart';
- import 'package:nomo/app/widgets/ix_app_bar.dart';
- import 'package:nomo/app/widgets/submit_btn.dart';
- import 'package:nomo/config/theme/theme_extensions/theme_extension.dart';
- import '../../../../config/theme/dark_theme_colors.dart';
- import '../../../constants/assets.dart';
- import '../../../constants/iconfont/iconfont.dart';
- import '../../../widgets/ix_image.dart';
- import '../controllers/account_controller.dart';
- class AccountView extends BaseView<AccountController> {
- const AccountView({super.key});
- @override
- PreferredSizeWidget? get appBar => IXAppBar(title: 'Account');
- @override
- Widget buildContent(BuildContext context) {
- return Obx(() {
- final isPremium = controller.isPremium.value;
- return SingleChildScrollView(
- padding: EdgeInsets.symmetric(horizontal: 14.w, vertical: 10.w),
- child: Column(
- children: [
- // Account 信息卡片
- _buildAccountCard(isPremium),
- 20.verticalSpaceFromWidth,
- // 底部按钮
- _buildBottomButtons(isPremium),
- 20.verticalSpaceFromWidth,
- ],
- ),
- );
- });
- }
- /// 构建账户信息卡片
- Widget _buildAccountCard(bool isPremium) {
- return Container(
- decoration: BoxDecoration(
- color: Get.reactiveTheme.highlightColor,
- borderRadius: BorderRadius.circular(12.r),
- ),
- child: Column(
- children: [
- // Account 条目
- _buildAccountItem(isPremium),
- _buildDivider(),
- // UID 条目
- _buildUIDItem(),
- _buildDivider(),
- // Time/Term 条目
- if (isPremium) _buildValidTermItem() else _buildFreeTimeItem(),
- _buildDivider(),
- // Premium 功能列表
- _buildPremiumFeatures(isPremium),
- ],
- ),
- );
- }
- /// Account 条目
- Widget _buildAccountItem(bool isPremium) {
- return Container(
- height: 56.w,
- padding: EdgeInsets.symmetric(horizontal: 16.w),
- child: Row(
- children: [
- // 图标
- Container(
- width: 30.w,
- height: 30.w,
- decoration: BoxDecoration(
- color: Get.reactiveTheme.shadowColor,
- borderRadius: BorderRadius.circular(8.r),
- ),
- child: Icon(IconFont.icon29, size: 20.w, color: Colors.white),
- ),
- 10.horizontalSpace,
- // 标题
- Expanded(
- child: Text(
- 'Account',
- style: TextStyle(
- fontSize: 14.sp,
- color: Get.reactiveTheme.textTheme.bodyLarge!.color,
- fontWeight: FontWeight.w400,
- ),
- ),
- ),
- // 徽章
- IXImage(
- source: isPremium ? Assets.premium : Assets.free,
- width: isPremium ? 92.w : 64.w,
- height: 28.w,
- sourceType: ImageSourceType.asset,
- ),
- ],
- ),
- );
- }
- /// UID 条目
- Widget _buildUIDItem() {
- return ClickOpacity(
- onTap: () {
- Clipboard.setData(ClipboardData(text: controller.uid));
- Get.snackbar('已复制', 'UID 已复制到剪贴板');
- },
- child: Container(
- height: 56.w,
- padding: EdgeInsets.symmetric(horizontal: 16.w),
- child: Row(
- children: [
- // 图标
- Container(
- width: 30.w,
- height: 30.w,
- decoration: BoxDecoration(
- color: Get.reactiveTheme.shadowColor,
- borderRadius: BorderRadius.circular(8.r),
- ),
- child: Icon(IconFont.icon14, size: 20.w, color: Colors.white),
- ),
- 10.horizontalSpace,
- // UID
- Expanded(
- child: Text(
- controller.uid,
- style: TextStyle(
- fontSize: 14.sp,
- color: Get.reactiveTheme.textTheme.bodyLarge!.color,
- fontWeight: FontWeight.w400,
- ),
- ),
- ),
- // 复制图标
- Icon(
- IconFont.icon57,
- size: 20.w,
- color: Get.reactiveTheme.hintColor,
- ),
- ],
- ),
- ),
- );
- }
- /// Free Time 条目
- Widget _buildFreeTimeItem() {
- return Container(
- height: 56.w,
- padding: EdgeInsets.symmetric(horizontal: 16.w),
- child: Row(
- children: [
- // 图标
- Container(
- width: 30.w,
- height: 30.w,
- decoration: BoxDecoration(
- color: Get.reactiveTheme.shadowColor,
- borderRadius: BorderRadius.circular(8.r),
- ),
- child: Icon(IconFont.icon30, size: 20.w, color: Colors.white),
- ),
- 10.horizontalSpace,
- // 标题
- Expanded(
- child: Text(
- 'Free Time',
- style: TextStyle(
- fontSize: 14.sp,
- color: Get.reactiveTheme.textTheme.bodyLarge!.color,
- fontWeight: FontWeight.w400,
- ),
- ),
- ),
- // 时间
- Text(
- controller.freeTime,
- style: TextStyle(
- fontSize: 13.sp,
- color: DarkThemeColors.validTermColor,
- fontWeight: FontWeight.w400,
- ),
- ),
- ],
- ),
- );
- }
- /// Valid Term 条目
- Widget _buildValidTermItem() {
- return Container(
- height: 56.w,
- padding: EdgeInsets.symmetric(horizontal: 16.w),
- child: Row(
- children: [
- // 图标
- Container(
- width: 30.w,
- height: 30.w,
- decoration: BoxDecoration(
- color: Get.reactiveTheme.shadowColor,
- borderRadius: BorderRadius.circular(8.r),
- ),
- child: Icon(IconFont.icon30, size: 20.w, color: Colors.white),
- ),
- 10.horizontalSpace,
- // 标题
- Expanded(
- child: Text(
- 'Valid Term',
- style: TextStyle(
- fontSize: 14.sp,
- color: Get.reactiveTheme.textTheme.bodyLarge!.color,
- fontWeight: FontWeight.w400,
- ),
- ),
- ),
- // 有效期
- Text(
- controller.validTerm,
- style: TextStyle(
- fontSize: 13.sp,
- color: Get.reactiveTheme.primaryColor,
- fontWeight: FontWeight.w400,
- ),
- ),
- ],
- ),
- );
- }
- Widget _buildPremiumFeatures(bool isPremium) {
- return Padding(
- padding: EdgeInsets.symmetric(horizontal: 14.w),
- child: Column(
- children: [
- _buildFeatureItem(IconFont.icon60, 'Unlock all free locations'),
- _buildFeatureItem(IconFont.icon61, 'Unlock smart mode'),
- _buildFeatureItem(IconFont.icon62, 'Unlock Multi-hop mode'),
- _buildFeatureItem(IconFont.icon63, 'Premium can share X devices'),
- _buildFeatureItem(IconFont.icon64, 'Own your own private server'),
- _buildFeatureItem(IconFont.icon65, 'Close ads'),
- ],
- ),
- );
- }
- Widget _buildFeatureItem(IconData icon, String title) {
- return SizedBox(
- height: 44.w,
- child: Row(
- children: [
- Icon(icon, color: DarkThemeColors.subscriptionColor, size: 24.w),
- 12.horizontalSpace,
- Expanded(
- child: Text(
- title,
- style: TextStyle(
- fontSize: 13.sp,
- color: Get.reactiveTheme.hintColor,
- ),
- ),
- ),
- Container(
- width: 20.w,
- height: 20.w,
- decoration: BoxDecoration(
- shape: BoxShape.circle,
- color: DarkThemeColors.subscriptionSelectColor,
- ),
- child: Icon(Icons.check, color: Colors.white, size: 12.w),
- ),
- ],
- ),
- );
- }
- /// 底部按钮
- Widget _buildBottomButtons(bool isPremium) {
- if (isPremium) {
- return Column(
- children: [
- SubmitButton(
- text: 'Change Subscription',
- bgColor: Get.reactiveTheme.highlightColor,
- textColor: DarkThemeColors.subscriptionColor,
- onPressed: () {
- // TODO: 修改订阅
- },
- ),
- 20.verticalSpaceFromWidth,
- // Device Authorization 按钮
- _buildSecondaryButton(
- text:
- 'Device Authorization (${controller.deviceCount}/${controller.maxDeviceCount})',
- icon: IconFont.icon11,
- onTap: () {
- // TODO: 设备授权
- },
- ),
- 10.verticalSpaceFromWidth,
- // 提示文字
- Text(
- 'You can authorize other devices as Premium users\n(${controller.deviceCount}/${controller.maxDeviceCount})',
- textAlign: TextAlign.center,
- style: TextStyle(
- fontSize: 12.sp,
- color: Get.reactiveTheme.hintColor,
- height: 1.5,
- ),
- ),
- ],
- );
- } else {
- return Column(
- children: [
- // Upgrade to Premium 按钮
- SubmitButton(
- text: 'Upgrade to Premium',
- bgColor: Get.reactiveTheme.highlightColor,
- textColor: DarkThemeColors.subscriptionColor,
- onPressed: () {
- // TODO: 修改订阅
- },
- ),
- 20.verticalSpaceFromWidth,
- // Activate Pre Code 按钮
- _buildSecondaryButton(
- text: 'Activate Pre Code',
- icon: IconFont.icon23,
- onTap: () {
- // TODO: 激活兑换码
- },
- ),
- 10.verticalSpaceFromWidth,
- // 提示文字
- Text(
- 'If you have a Pre code, please enter it to claim your Pre benefits.',
- textAlign: TextAlign.center,
- style: TextStyle(
- fontSize: 12.sp,
- color: Get.reactiveTheme.hintColor,
- ),
- ),
- ],
- );
- }
- }
- /// 次要按钮(黑色边框)
- Widget _buildSecondaryButton({
- required String text,
- required IconData icon,
- required VoidCallback onTap,
- }) {
- return ClickOpacity(
- onTap: onTap,
- child: Container(
- height: 52.w,
- decoration: BoxDecoration(
- border: Border.all(color: Get.reactiveTheme.dividerColor, width: 1.w),
- borderRadius: BorderRadius.circular(12.r),
- ),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Text(
- text,
- style: TextStyle(
- fontSize: 16.sp,
- color: DarkThemeColors.subscriptionColor,
- fontWeight: FontWeight.w400,
- ),
- ),
- SizedBox(width: 8.w),
- Icon(icon, size: 20.w, color: DarkThemeColors.subscriptionColor),
- ],
- ),
- ),
- );
- }
- /// 构建分割线
- Widget _buildDivider() {
- return Divider(height: 1.w, color: Get.reactiveTheme.dividerColor);
- }
- }
|