gps related minor fixes

This commit is contained in:
Mikkeli Matlock
2026-02-09 17:48:38 +09:00
parent 47b3427e63
commit a46496d688
4 changed files with 16 additions and 2 deletions

View File

@@ -61,7 +61,7 @@ class GpsCompass extends StatelessWidget {
_hasSignal ? "${_displayHeading} ${_compassDirection}" : (_isAcquiring ? "ACQ" : "N/A"),
style: TextStyle(
fontSize: 80,
color: theme.subdued,
color: theme.subdued, // less emphasis on text, let the icon have semantic colour
fontFamily: 'DIN1451',
),
),

View File

@@ -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,