removed unnecessary comment.

This commit is contained in:
Faris Armoush
2025-05-28 14:56:14 +03:00
parent 9a41e0c4f5
commit 16dc066440

View File

@ -59,7 +59,6 @@ class AirQualityEndSideWidget extends StatelessWidget {
const AirQualityEndSideLiveIndicator(), const AirQualityEndSideLiveIndicator(),
const AirQualityEndSideGaugeAndInfo(), const AirQualityEndSideGaugeAndInfo(),
const SizedBox(height: 20), const SizedBox(height: 20),
// The spaces added to the labels are for alignment purposes, because FittedBox is used to align the text.
AqiSubValueWidget( AqiSubValueWidget(
label: AqiType.pm25.value, label: AqiType.pm25.value,
value: 19, value: 19,
@ -71,7 +70,7 @@ class AirQualityEndSideWidget extends StatelessWidget {
unit: AqiType.pm10.unit, unit: AqiType.pm10.unit,
), ),
AqiSubValueWidget( AqiSubValueWidget(
label: '${AqiType.co2.value} ', label: AqiType.co2.value,
value: 610, value: 610,
unit: AqiType.co2.unit, unit: AqiType.co2.unit,
), ),