From: Scott Murray Date: Sun, 1 Jan 2023 21:11:46 +0000 (-0500) Subject: UI Tweak X-Git-Tag: 12.1.13^0 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F43%2F28343%2F1;p=apps%2Fflutter-dashboard.git UI Tweak Remove extra space between temperatures and degree symbol to improve visuals of temperature display. Bug-AGL: SPEC-4660 Signed-off-by: Scott Murray Change-Id: Id30c05073d17d63178811b24d6a8a01fbe07b9c9 --- 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, ), ],