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 21:22:54 +0000 |
commit | adc3fca51b9ebfc23b503126065d97d692d0ec64 (patch) | |
tree | 867cceb4d3212e0ad3c2ff0c4b6dbc9fed4ded1c | |
parent | 9ba227f63a5f83055910b502ca90bb523950c77b (diff) |
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, ), ], |