refactor(apps): 主题系统迁移至 ColorScheme + 扩展架构并支持 Dark Mode

This commit is contained in:
qzl
2026-03-27 19:07:39 +08:00
parent ecc1ec6ce4
commit ae29a8209b
146 changed files with 4301 additions and 3200 deletions
@@ -49,7 +49,9 @@ class _FeaturesScreenState extends State<FeaturesScreen> {
body: BlocBuilder<AutomationJobsCubit, AutomationJobsState>(
builder: (context, state) {
if (state.isLoading) {
return const Center(child: AppLoadingIndicator());
return const Center(
child: AppLoadingIndicator(variant: AppLoadingVariant.surface),
);
}
if (state.error != null) {
return Center(child: Text(state.error!));
@@ -90,19 +92,21 @@ class _FeaturesScreenState extends State<FeaturesScreen> {
}
Widget _buildEmptyHint(String text) {
final colorScheme = Theme.of(context).colorScheme;
return Container(
width: double.infinity,
margin: const EdgeInsets.only(bottom: AppSpacing.sm),
padding: const EdgeInsets.all(AppSpacing.lg),
decoration: BoxDecoration(
color: AppColors.white,
color: colorScheme.surface,
borderRadius: BorderRadius.circular(AppRadius.lg),
border: Border.all(color: AppColors.borderSecondary),
border: Border.all(color: colorScheme.outlineVariant),
),
child: Text(
text,
style: const TextStyle(
color: AppColors.slate500,
style: TextStyle(
color: colorScheme.onSurfaceVariant,
fontSize: 13,
fontWeight: FontWeight.w500,
),
@@ -111,17 +115,21 @@ class _FeaturesScreenState extends State<FeaturesScreen> {
}
Widget _buildSectionTitle(String title) {
final colorScheme = Theme.of(context).colorScheme;
return Text(
title,
style: const TextStyle(
style: TextStyle(
fontSize: 13,
fontWeight: FontWeight.w600,
color: AppColors.slate500,
color: colorScheme.onSurfaceVariant,
),
);
}
Widget _buildJobCard(AutomationJobModel job) {
final colorScheme = Theme.of(context).colorScheme;
return AppPressable(
onTap: () async {
await context.push(AppRoutes.settingsJobDetail(job.id));
@@ -135,9 +143,9 @@ class _FeaturesScreenState extends State<FeaturesScreen> {
margin: const EdgeInsets.only(bottom: AppSpacing.sm),
padding: const EdgeInsets.all(AppSpacing.lg),
decoration: BoxDecoration(
color: AppColors.white,
color: colorScheme.surface,
borderRadius: BorderRadius.circular(AppRadius.lg),
border: Border.all(color: AppColors.borderSecondary),
border: Border.all(color: colorScheme.outlineVariant),
),
child: Row(
children: [
@@ -145,13 +153,13 @@ class _FeaturesScreenState extends State<FeaturesScreen> {
width: AppSpacing.xxl + AppSpacing.lg,
height: AppSpacing.xxl + AppSpacing.lg,
decoration: BoxDecoration(
color: AppColors.surfaceTertiary,
color: colorScheme.surfaceContainerLow,
borderRadius: BorderRadius.circular(AppRadius.md),
),
child: const Icon(
child: Icon(
Icons.auto_awesome,
size: AppSpacing.lg,
color: AppColors.blue500,
color: colorScheme.primary,
),
),
const SizedBox(width: AppSpacing.md),
@@ -161,17 +169,18 @@ class _FeaturesScreenState extends State<FeaturesScreen> {
children: [
Text(
job.title,
style: const TextStyle(
style: TextStyle(
fontSize: 15,
fontWeight: FontWeight.w600,
color: colorScheme.onSurface,
),
),
const SizedBox(height: AppSpacing.xs),
Text(
_buildSubtitle(job),
style: const TextStyle(
style: TextStyle(
fontSize: 12,
color: AppColors.slate500,
color: colorScheme.onSurfaceVariant,
),
),
],