- 新增首页平板信息卡片(定位、截图、使用时长、设备操作) - 将消息 Tab 改为管理 Tab,增加横版菜单与消息列表 - 新增相册、闹钟、联系人、应用子页面路由 - 统一主色为桐桐绿并优化调试日志输出
22 lines
757 B
Dart
22 lines
757 B
Dart
import 'package:cupertino_ui/cupertino_ui.dart';
|
|
|
|
/// 应用统一主题。
|
|
///
|
|
/// 采用 Cupertino 视觉风格,集中定义主色调与背景色,避免散落的硬编码颜色。
|
|
class AppTheme {
|
|
const AppTheme._();
|
|
|
|
/// 主色:统一采用「桐桐绿」,与移动端设计稿保持一致。
|
|
static const Color primary = Color(0xFF07C160);
|
|
static const Color background = CupertinoColors.systemBackground;
|
|
static const Color groupedBackground =
|
|
CupertinoColors.systemGroupedBackground;
|
|
|
|
/// 全局 Cupertino 主题配置。
|
|
static CupertinoThemeData get cupertinoTheme => const CupertinoThemeData(
|
|
primaryColor: primary,
|
|
barBackgroundColor: background,
|
|
scaffoldBackgroundColor: background,
|
|
);
|
|
}
|