I hope you are doing well.
I had managed to open the native screen from react-native but now want to open the react-native particular screen from native.
any idea?
Tried this
let jsCodeLocation = RCTBundleURLProvider.sharedSettings().jsBundleURL(forBundleRoot: "index", fallbackResource: nil)
let rootView = RCTRootView(bundleURL:jsCodeLocation as URL?, moduleName: "myapp", initialProperties: nil, launchOptions:nil)
let rootViewController = UIViewController()
rootViewController.view = rootView
self.navigationController?.pushViewController(rootViewController, animated: true)