-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainTabView.swift
61 lines (51 loc) · 1.54 KB
/
MainTabView.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
//
// MainTabView.swift
// accompliSHARE1
//
// Created by Rachel Yoon on 8/3/23.
//
import SwiftUI
struct MainTabView: View {
@StateObject var viewModel = ContentViewViewModel()
@StateObject var timerModel = TimerViewViewModel()
var body: some View {
if viewModel.isSignedIn, !viewModel.currentUserId.isEmpty {
accountView
.environmentObject(viewModel)
.environmentObject(timerModel)
.onAppear {
print("Account view appeared")
}
} else {
LoginView()
}
}
@ViewBuilder
var accountView: some View {
TabView {
// ToDoListView(userId: viewModel.currentUserId)
ToDoListView(userId: "15nVZtsUqXSGoA51p4qpPKG3WKn1")
.tabItem{
Label("Home", systemImage:"house")
}
GalleryView()
.tabItem{
Label("", systemImage: "globe.asia.australia.fill")
}
ProfileView(user: User.MOCK_USERS[1])
.tabItem{
Label("", systemImage: "person")
}
SearchView()
.tabItem{
Label("", systemImage: "magnifyingglass")
}
}
.accentColor(.purple)
}
struct MainTabView_Previews: PreviewProvider {
static var previews: some View {
MainTabView()
}
}
}