关怀模式
This commit is contained in:
@@ -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,
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user