-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMainView.swift
80 lines (71 loc) · 1.93 KB
/
MainView.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
75
76
77
78
79
80
import SwiftUI
struct MainView: View {
var body: some View {
NavigationSplitView {
List {
navigationLinks
.foregroundStyle(.white)
}
.navigationTitle("Threads")
} detail: {
FeedView()
}
}
}
extension MainView {
private var navigationLinks: some View {
Group {
NavigationLink(destination: ActivityView()) {
activityLabel
}
NavigationLink(destination: FeedView()) {
feedLabel
}
NavigationLink(destination: NewThreadView()) {
newThreadLabel
}
NavigationLink(destination: SearchView()) {
searchLabel
}
NavigationLink(destination: SettingsView()) {
settingsLabel
}
NavigationLink(destination: ProfileView()) {
profileLabel
}
}
}
private var activityLabel: some View {
Label(title: { Text("Activity") }, icon: {
Image(systemName: "heart")
})
}
private var feedLabel: some View {
Label(title: { Text("Feed") }, icon: {
Image(systemName: "house")
})
}
private var newThreadLabel: some View {
Label(title: { Text("New") }, icon: {
Image(systemName: "square.and.pencil")
})
}
private var searchLabel: some View {
Label(title: { Text("Search") }, icon: {
Image(systemName: "magnifyingglass")
})
}
private var settingsLabel: some View {
Label(title: { Text("Settings") }, icon: {
Image(systemName: "gear")
})
}
private var profileLabel: some View {
Label(title: { Text("Profile") }, icon: {
Image(systemName: "person")
})
}
}
#Preview {
MainView()
}