Move cheapest station label to Live Activity header

This commit is contained in:
FuelBoard Contributor
2026-08-17 17:21:31 +01:00
parent b24b59df6f
commit bed39956a3
+2 -2
View File
@@ -181,7 +181,7 @@ struct AlertsView: View {
Section { Section {
Toggle("Live Activity", isOn: $liveActivityEnabled) Toggle("Live Activity", isOn: $liveActivityEnabled)
Picker("Cheapest station", selection: $liveActivityFuel) { Picker("Fuel", selection: $liveActivityFuel) {
ForEach(FuelType.allCases) { fuel in ForEach(FuelType.allCases) { fuel in
Text(fuel.displayName).tag(fuel) Text(fuel.displayName).tag(fuel)
} }
@@ -193,7 +193,7 @@ struct AlertsView: View {
} }
} }
} header: { } header: {
Text("Live Activity") Text("Cheapest station")
} footer: { } footer: {
Text("Shows the cheapest station for the fuel and distance you pick here on the Lock Screen and Dynamic Island — independent of the Stations tab (choose Follow search to mirror its distance instead). Updates as you drive; tap to open directions. Live Activities can be disabled in System Settings → Live Activities.") Text("Shows the cheapest station for the fuel and distance you pick here on the Lock Screen and Dynamic Island — independent of the Stations tab (choose Follow search to mirror its distance instead). Updates as you drive; tap to open directions. Live Activities can be disabled in System Settings → Live Activities.")
} }