-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathScreens.swift
61 lines (53 loc) · 1.5 KB
/
Screens.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import Atoms
import SwiftUI
struct MapScreen: View {
@Watch(AuthorizationStatusAtom())
var authorizationStatus
@ViewContext
var context
var body: some View {
Group {
switch authorizationStatus {
case .authorizedAlways, .authorizedWhenInUse:
mapContent
case .notDetermined, .restricted, .denied:
authorizationContent
@unknown default:
authorizationContent
}
}
.navigationTitle("Map")
}
var mapContent: some View {
MapView()
.ignoresSafeArea(edges: [.bottom, .leading, .trailing])
.overlay(alignment: .topTrailing) {
Button {
context.reset(CoordinateAtom())
} label: {
Image(systemName: "location")
.padding()
.background(Color(.secondarySystemBackground))
.cornerRadius(8)
}
.padding()
.shadow(radius: 2)
}
}
var authorizationContent: some View {
ZStack {
Button("Open Settings") {
UIApplication.shared.open(URL(string: UIApplication.openSettingsURLString)!)
}
.tint(.blue)
.buttonStyle(.borderedProminent)
.buttonBorderShape(.capsule)
.controlSize(.large)
}
}
}
#Preview {
AtomRoot {
MapScreen()
}
}