gps related minor fixes
This commit is contained in:
@@ -70,7 +70,7 @@ class SystemBar extends StatelessWidget {
|
||||
value: gpsState == 'acquiring' ? 'ACQ'
|
||||
: gpsState == 'fix' ? (gpsSatellites?.toString() ?? 'N/A')
|
||||
: '0', // lost or unknown
|
||||
isAbnormal: gpsState != 'fix',
|
||||
isAbnormal: gpsState != 'fix' || gpsSatellites == null,
|
||||
alignment: Alignment.centerLeft,
|
||||
labelSize: labelSize,
|
||||
valueSize: valueSize,
|
||||
|
||||
Reference in New Issue
Block a user