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
+15 -3
View File
@@ -67,11 +67,11 @@ class KRThemeService extends GetxService {
/// 定义亮模式的主题数据
ThemeData kr_lightTheme() {
return ThemeData.light().copyWith(
primaryColor: const Color(0xFFF6F6F6),
scaffoldBackgroundColor: Colors.white, // 整体背景色
primaryColor: const Color(0xFFADFF5B),
scaffoldBackgroundColor: Colors.transparent,
cardColor: Colors.white, // 卡片背景色
appBarTheme: const AppBarTheme(
systemOverlayStyle: SystemUiOverlayStyle.dark, // 使用深色状态栏样式
systemOverlayStyle: SystemUiOverlayStyle.light, // 使用深色状态栏样式
),
hintColor: const Color(0xFFBFBFBF),
textTheme: TextTheme(
@@ -142,6 +142,18 @@ class KRThemeService extends GetxService {
return Colors.transparent; // 打开时不显示边框
}),
),
snackBarTheme: SnackBarThemeData(
backgroundColor: Colors.black, // 黑色背景
contentTextStyle: TextStyle(
color: Colors.white, // 白色文字
fontSize: 14,
),
actionTextColor: Colors.white, // 操作按钮文字颜色
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8), // 圆角
),
behavior: SnackBarBehavior.floating, // 浮动样式
),
// 其他自定义颜色
);
}