Skip to content

Instantly share code, notes, and snippets.

@avielg
Created August 22, 2022 15:28
Show Gist options
  • Save avielg/ec6c888f85244faa4097b1101b721513 to your computer and use it in GitHub Desktop.
Save avielg/ec6c888f85244faa4097b1101b721513 to your computer and use it in GitHub Desktop.
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