Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions lib/ios/native-navigation/TabViewManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,18 @@ final class TabView: UIView {
return viewController
}

// TODO(lmr): handle non-RN tabs
let coordinator = ReactNavigationCoordinator.sharedInstance

if let route = route {
let vc = ReactViewController(moduleName: route, props: props).prepareViewControllerForPresenting()
vc.tabBarItem = tabBarItem
viewController = vc
guard let flow = coordinator.delegate?.flowCoordinatorForId?(route) as? UIViewController else {
let vc = ReactViewController(moduleName: route, props: props).prepareViewControllerForPresenting()
vc.tabBarItem = tabBarItem
return vc
}
(flow as! ReactFlowCoordinator).start(props)
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can add other method for ReactFlowCoordinator in order to pass props but this is up for discussions.

flow.tabBarItem = tabBarItem

viewController = coordinator.navigation.makeNavigationController(rootViewController: flow)
}

return viewController
Expand Down