diff options
author | Scott Murray <scott.murray@konsulko.com> | 2023-01-01 16:11:46 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2023-01-01 16:17:46 -0500 |
commit | 7b663a0f2f0e9eaf8bb9dee0939cde0aafd69d77 (patch) | |
tree | 867cceb4d3212e0ad3c2ff0c4b6dbc9fed4ded1c | |
parent | 84ae05bc27cd9f5d461e75dfdb258e1a38c434b6 (diff) |
UI Tweakneedlefish
Remove extra space between temperatures and degree symbol to improve
visuals of temperature display.
Bug-AGL: SPEC-4660
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: Id30c05073d17d63178811b24d6a8a01fbe07b9c9
-rw-r--r-- | lib/widgets/weather.dart | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/widgets/weather.dart b/lib/widgets/weather.dart index 73b7014..f40b267 100644 --- a/lib/widgets/weather.dart +++ b/lib/widgets/weather.dart @@ -58,7 +58,7 @@ class Weather extends ConsumerWidget { Text('Inside', style: SizeConfig.smallnormalfont2), Text( vehicleInsideTemp.temp.toInt().toString() + - ' \u00B0', + '\u00B0', style: SizeConfig.normalfont), ], ), @@ -74,7 +74,7 @@ class Weather extends ConsumerWidget { ), Text( vehicleOutsideTemp.temp.toInt().toString() + - ' \u00B0', + '\u00B0', style: SizeConfig.normalfont, ), ], |