Created
August 22, 2022 15:28
-
-
Save avielg/ec6c888f85244faa4097b1101b721513 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct AppView: View { | |
@ObservedObject var navigation: AppNavigation | |
var body: some View { | |
CustomTabBar(selection: $navigation.selectedTab) { | |
feedTab() // ] returns the feed SwiftUI view | |
searchTab() // ⎤ | |
liveTab() // ⎥ return views of UIViewControllerRepresentable | |
notificationsTab() // ⎥ | |
profileTab() // ⎦ | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment