NCSU-App-Development-Club / Marigold-iOS

Mozilla Public License 2.0
1 stars 1 forks source link

Change `SignedInTabView` to show actual views instead of just `Text` #24

Open Majekdor opened 12 months ago

Majekdor commented 12 months ago

Currently, SignedInTabView looks like this:

struct SignedInTabView: View {
    var body: some View {
        TabView {
            Text("Home")
                .tabItem {
                    Label("Home", systemImage: "house")
                }

            Text("Search")
                .tabItem {
                    Label("Search", systemImage: "magnifyingglass")
                }

            Text("Clubs")
                .tabItem {
                    Label("Clubs", systemImage: "person.3")
                }

            Text("")
                .tabItem {
                    Label("Profile", systemImage: "person.circle")
                }
        }
    }
}

We should be showing our actual views instead of just Text.