UI Tweak 43/28343/1 12.1.13 lamprey/12.1.13 lamprey_12.1.13
authorScott Murray <scott.murray@konsulko.com>
Sun, 1 Jan 2023 21:11:46 +0000 (16:11 -0500)
committerScott Murray <scott.murray@konsulko.com>
Sun, 1 Jan 2023 21:22:54 +0000 (21:22 +0000)
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

lib/widgets/weather.dart

index 73b7014..f40b267 100644 (file)
@@ -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,
                         ),
                       ],