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
Text('Inside', style: SizeConfig.smallnormalfont2),
Text(
vehicleInsideTemp.temp.toInt().toString() +
- ' \u00B0',
+ '\u00B0',
style: SizeConfig.normalfont),
],
),
),
Text(
vehicleOutsideTemp.temp.toInt().toString() +
- ' \u00B0',
+ '\u00B0',
style: SizeConfig.normalfont,
),
],