周报与上周对比 标题间距修改

This commit is contained in:
czz
2025-11-14 15:36:29 +08:00
parent 18bd13a7b6
commit 4cc2b324fa

View File

@@ -132,22 +132,23 @@ Widget WeekDataWidget(
return [ return [
Text( Text(
item['name']?.toString() ?? '-', item['name']?.toString() ?? '-',
style: TextStyle(color: Color(0xFFFFFFFF), fontSize: 26.rpx), style: TextStyle(
color: Color(0xFFFFFFFF), fontSize: 26.rpx, height: 1),
), ),
Text( Text(
item['lastCurr']?.toString() ?? '-', item['lastCurr']?.toString() ?? '-',
style: TextStyle(color: Color(0xFFFFFFFF), fontSize: 26.rpx), style: TextStyle(
color: Color(0xFFFFFFFF), fontSize: 26.rpx, height: 1),
), ),
Text( Text(
item['curr']?.toString() ?? '-', item['curr']?.toString() ?? '-',
style: TextStyle( style: TextStyle(
color: item["currColor"] ?? Color(0xFFFFFFFF), color: Color(0xFFFFFFFF), fontSize: 26.rpx, height: 1),
fontSize: 26.rpx,
),
), ),
Text( Text(
item['range']?.toString() ?? '-', item['range']?.toString() ?? '-',
style: TextStyle(color: Color(0xFFFFFFFF), fontSize: 26.rpx), style: TextStyle(
color: Color(0xFFFFFFFF), fontSize: 26.rpx, height: 1),
), ),
]; ];
}).toList(), }).toList(),