Skip to content

Commit

Permalink
Add support text on Apple Watch
Browse files Browse the repository at this point in the history
  • Loading branch information
daneden committed Jun 28, 2024
1 parent 465a021 commit a4e27fd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion watchOS/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ struct ContentView: View {
@EnvironmentObject var currentLocation: CurrentLocation
@EnvironmentObject var timeMachine: TimeMachine

@State var selectedLocation: String?
@SceneStorage("selectedLocation") private var selectedLocation: String?

private let timer = Timer.publish(every: 60, on: RunLoop.main, in: .common).autoconnect()

Expand Down Expand Up @@ -70,6 +70,8 @@ struct ContentView: View {
)
}
}
} footer: {
Text("Locations are synced via iCloud. Delete or add new locations by using Solstice on Mac, iPhone, iPad, or Apple Vision Pro")
}
}
.navigationTitle(Text(verbatim: "Solstice"))
Expand Down

0 comments on commit a4e27fd

Please sign in to comment.