From 4cc2b324faef5b4d95cb55da4ba2c6000c6ded20 Mon Sep 17 00:00:00 2001 From: czz <862977248@qq.com> Date: Fri, 14 Nov 2025 15:36:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=91=A8=E6=8A=A5=E4=B8=8E=E4=B8=8A=E5=91=A8?= =?UTF-8?q?=E5=AF=B9=E6=AF=94=20=E6=A0=87=E9=A2=98=E9=97=B4=E8=B7=9D?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sleep_report/component/WeekDataWidget.dart | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/lib/pages/sleep_report/component/WeekDataWidget.dart b/lib/pages/sleep_report/component/WeekDataWidget.dart index 5ad86b9..7c6b5ff 100644 --- a/lib/pages/sleep_report/component/WeekDataWidget.dart +++ b/lib/pages/sleep_report/component/WeekDataWidget.dart @@ -132,22 +132,23 @@ Widget WeekDataWidget( return [ Text( item['name']?.toString() ?? '-', - style: TextStyle(color: Color(0xFFFFFFFF), fontSize: 26.rpx), + style: TextStyle( + color: Color(0xFFFFFFFF), fontSize: 26.rpx, height: 1), ), Text( item['lastCurr']?.toString() ?? '-', - style: TextStyle(color: Color(0xFFFFFFFF), fontSize: 26.rpx), + style: TextStyle( + color: Color(0xFFFFFFFF), fontSize: 26.rpx, height: 1), ), Text( item['curr']?.toString() ?? '-', style: TextStyle( - color: item["currColor"] ?? Color(0xFFFFFFFF), - fontSize: 26.rpx, - ), + color: Color(0xFFFFFFFF), fontSize: 26.rpx, height: 1), ), Text( item['range']?.toString() ?? '-', - style: TextStyle(color: Color(0xFFFFFFFF), fontSize: 26.rpx), + style: TextStyle( + color: Color(0xFFFFFFFF), fontSize: 26.rpx, height: 1), ), ]; }).toList(),