容量百分比变色显示逻辑优化

This commit is contained in:
2026-07-04 12:30:12 +08:00
parent 9d5a53ea1f
commit 64e1a9f910
2 changed files with 25 additions and 24 deletions
+24 -23
View File
@@ -789,30 +789,31 @@ class _BatteryHealthPageState extends State<BatteryHealthPage>
Row(
crossAxisAlignment: CrossAxisAlignment.end,
children: [
Row(
crossAxisAlignment: CrossAxisAlignment.baseline,
textBaseline: TextBaseline.alphabetic,
children: [
Text(
healthPercent.toStringAsFixed(1),
style: const TextStyle(
fontSize: 40,
fontWeight: FontWeight.w500,
height: 1.0,
),
),
const SizedBox(width: 2),
Text(
'%',
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.w300,
height: 1.0,
color: Colors.grey.shade600,
),
),
],
Row(
crossAxisAlignment: CrossAxisAlignment.baseline,
textBaseline: TextBaseline.alphabetic,
children: [
Text(
healthPercent.toStringAsFixed(1),
style: TextStyle(
fontSize: 40,
fontWeight: FontWeight.w500,
height: 1.0,
color: healthPercent < 70 ? Colors.red : Colors.black, // 🟢 动态颜色
),
),
const SizedBox(width: 2),
Text(
'%',
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.w300,
height: 1.0,
color: healthPercent < 70 ? Colors.red : Colors.grey.shade600, // 🟢 动态颜色
),
),
],
),
const Spacer(),
Column(
crossAxisAlignment: CrossAxisAlignment.end,