关怀模式

This commit is contained in:
Developer
2026-04-02 22:30:49 +08:00
parent 09fee0694c
commit 7872f2e78a
70 changed files with 4884 additions and 2752 deletions

View File

@@ -145,7 +145,7 @@ class _TougaoPageState extends State<TougaoPage> {
appBar: AppBar(
title: Text(
'投稿记录',
style: TextStyle(color: isDark ? Colors.white : Colors.black87),
style: TextStyle(color: _themeController.currentThemeColor),
),
backgroundColor: isDark ? const Color(0xFF2A2A2A) : Colors.white,
elevation: 0,
@@ -154,7 +154,7 @@ class _TougaoPageState extends State<TougaoPage> {
IconButton(
icon: Icon(
Icons.delete_sweep_outlined,
color: isDark ? Colors.white : Colors.black87,
color: _themeController.currentThemeColor,
),
onPressed: _clearAllRecords,
tooltip: '清空记录',
@@ -230,14 +230,16 @@ class _TougaoPageState extends State<TougaoPage> {
Container(
padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 4),
decoration: BoxDecoration(
color: AppConstants.primaryColor.withValues(alpha: 0.2),
color: _themeController.currentThemeColor.withValues(
alpha: 0.2,
),
borderRadius: BorderRadius.circular(8),
),
child: Text(
record.catename,
style: TextStyle(
fontSize: 12,
color: AppConstants.primaryColor,
color: _themeController.currentThemeColor,
fontWeight: FontWeight.w500,
),
),