Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
Majekdor opened this issue Nov 13, 2023 · 0 comments
Open

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

Majekdor opened this issue Nov 13, 2023 · 0 comments
Assignees
Labels
Super Simple This issue is super simple to complete SwiftUI This issue requires working with SwiftUI views

Comments

@Majekdor
Copy link
Member

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.

@Majekdor Majekdor added Super Simple This issue is super simple to complete SwiftUI This issue requires working with SwiftUI views labels Nov 13, 2023
@Majekdor Majekdor changed the title Change SignedInTabView to show actual views instead of just text Change SignedInTabView to show actual views instead of just Text Nov 13, 2023
@rhea-modey rhea-modey self-assigned this Feb 20, 2024
@preetithirukonda preetithirukonda self-assigned this Feb 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Super Simple This issue is super simple to complete SwiftUI This issue requires working with SwiftUI views
Projects
None yet
Development

No branches or pull requests

3 participants