feat(client): 授权管理独立一级屏——授权/购买续费/订单管理三 tab(桌面+移动)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
@@ -1,23 +0,0 @@
|
||||
// screens/me/license_screen.dart — 授权管理独立屏(镜像原型 m-license.html)。
|
||||
// 移动端从「我的 → 系统 → 授权管理」进入(/me/license);内容 = 公共 LicensePanel
|
||||
// 四卡(授权信息 / 在线购买续费 / 兑换券 / 降级规则),与桌面设置授权 tab 同源。
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../../core/theme/context_tokens.dart';
|
||||
import '../settings/license_panel.dart';
|
||||
|
||||
class LicenseScreen extends StatelessWidget {
|
||||
const LicenseScreen({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final t = context.tokens;
|
||||
return Container(
|
||||
color: t.bg,
|
||||
child: const SingleChildScrollView(
|
||||
padding: EdgeInsets.all(14),
|
||||
child: LicensePanel(),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user