-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnvironmentObjects.swift
74 lines (62 loc) · 1.74 KB
/
EnvironmentObjects.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
62
63
64
65
66
67
68
69
70
71
72
73
74
import SwiftUI
class EnvironmentViewModel: ObservableObject {
@Published var data: [String] = []
init() {
getData()
}
func getData() {
self.data.append(contentsOf: ["iPhone", "iPad", "iMac", "Apple Watch"])
}
}
struct EnvironmentObjects: View {
@StateObject var viewModel: EnvironmentViewModel = .init()
var body: some View {
NavigationStack {
List {
ForEach(viewModel.data, id: \.self) { item in
NavigationLink(destination: DetailView(selectedItem: item)) {
Text(item)
}
}
}
.navigationTitle("iOS devices")
}
.environmentObject(viewModel)
}
}
struct DetailView: View {
let selectedItem: String
var body: some View {
ZStack {
Color.orange.ignoresSafeArea()
NavigationLink(destination: NestedView()) {
Text(selectedItem)
.font(.headline)
.foregroundStyle(.orange)
.padding()
.padding(.horizontal)
.background(.white)
.cornerRadius(30)
}
}
}
}
struct NestedView: View {
@EnvironmentObject var viewModel: EnvironmentViewModel
var body: some View {
ZStack {
Color.indigo.ignoresSafeArea()
ScrollView {
VStack(spacing: 20) {
ForEach(viewModel.data, id: \.self) { item in
Text(item)
}
}
}
.foregroundStyle(.white)
}
}
}
#Preview {
EnvironmentObjects()
}