feat: 更新代码仓库全部修改
Build Android APK / 编译 libcore.aar (push) Has been cancelled
Build Android APK / 编译 Android APK (release) (push) Has been cancelled
Build Android APK / 创建 GitHub Release (push) Has been cancelled
Build Multi-Platform / 编译 libcore (Android) (push) Has been cancelled
Build Multi-Platform / 编译 libcore (Windows) (push) Has been cancelled
Build Multi-Platform / 编译 libcore (macOS) (push) Has been cancelled
Build Multi-Platform / 编译 libcore (Linux) (push) Has been cancelled
Build Multi-Platform / 构建 Android APK (push) Has been cancelled
Build Multi-Platform / 构建 Windows (push) Has been cancelled
Build Multi-Platform / 构建 macOS (push) Has been cancelled
Build Multi-Platform / 构建 Linux (push) Has been cancelled
Build Multi-Platform / 创建 Release (push) Has been cancelled
Build Windows / build (push) Has been cancelled

This commit is contained in:
2025-10-30 04:47:53 -07:00
parent 145832093e
commit f42a481452
134 changed files with 8032 additions and 4270 deletions
@@ -5,6 +5,7 @@ import 'package:kaer_with_panels/app/widgets/kr_local_image.dart';
import 'package:kaer_with_panels/app/localization/app_translations.dart';
import 'package:kaer_with_panels/app/widgets/kr_app_text_style.dart';
import '../controllers/kr_order_status_controller.dart';
import 'package:kaer_with_panels/app/routes/app_pages.dart';
/// 订单状态视图
class KROrderStatusView extends GetView<KROrderStatusController> {
@@ -130,10 +131,10 @@ class KROrderStatusView extends GetView<KROrderStatusController> {
child: ElevatedButton(
onPressed: () {
// 返回到首页(清空导航栈)
Get.offAllNamed('/');
Get.offAllNamed(Routes.KR_HOME);
},
style: ElevatedButton.styleFrom(
backgroundColor: Theme.of(Get.context!).primaryColor,
backgroundColor: Colors.white,
foregroundColor: Colors.white,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12.r),
@@ -145,42 +146,42 @@ class KROrderStatusView extends GetView<KROrderStatusController> {
style: KrAppTextStyle(
fontSize: 16,
fontWeight: FontWeight.w600,
color: Colors.white,
color: Colors.black,
),
),
),
),
SizedBox(height: 12.h),
// 查看订阅按钮
SizedBox(
width: double.infinity,
height: 48.h,
child: OutlinedButton(
onPressed: () {
// 返回到首页并切换到订阅页面
Get.offAllNamed('/');
// 可以通过事件总线发送消息切换tab
},
style: OutlinedButton.styleFrom(
foregroundColor: Theme.of(Get.context!).primaryColor,
side: BorderSide(
color: Theme.of(Get.context!).primaryColor,
width: 1.5,
),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12.r),
),
),
child: Text(
AppTranslations.kr_orderStatus.viewSubscription,
style: KrAppTextStyle(
fontSize: 16,
fontWeight: FontWeight.w600,
color: Theme.of(Get.context!).primaryColor,
),
),
),
),
// SizedBox(
// width: double.infinity,
// height: 48.h,
// child: OutlinedButton(
// onPressed: () {
// // 返回到首页并切换到订阅页面
// Get.offAllNamed('/');
// // 可以通过事件总线发送消息切换tab
// },
// style: OutlinedButton.styleFrom(
// foregroundColor: Theme.of(Get.context!).primaryColor,
// side: BorderSide(
// color: Theme.of(Get.context!).primaryColor,
// width: 1.5,
// ),
// shape: RoundedRectangleBorder(
// borderRadius: BorderRadius.circular(12.r),
// ),
// ),
// child: Text(
// AppTranslations.kr_orderStatus.viewSubscription,
// style: KrAppTextStyle(
// fontSize: 16,
// fontWeight: FontWeight.w600,
// color: Colors.black,
// ),
// ),
// ),
// ),
],
),
);