We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I was following the "ModalWithNavigatorCoordinator' example. Everything is fine but I cant dismiss the ViewController housing the RCTRootView.
I do get a callback in:
// This is an exported method that is available in JS. RCT_EXPORT_METHOD(closeModal) { [self.delegate closeModal]; }
but the self.delegate is nil. Also I noticed whenever I execute the call to open my react native component, I get this log:
2018-12-07 18:11:56.157 [info][tid:main][RCTRootView.m:293] Running application MySectionList ({ initialProps = { }; rootTag = 1; }) 2018-12-07 18:11:56.157408+0530 ReactNativeTest[31182:518324] Running application MySectionList ({ initialProps = { }; rootTag = 1; })
"ReactNativeTest" is the name of my iOS project and MySectionList is the name of my React-Native project.
The text was updated successfully, but these errors were encountered:
Had the same problem, the only way to avoid it was to save the data to the userdefaults and recover the value in the RCT_EXPORT_METHOD
Sorry, something went wrong.
No branches or pull requests
Hi,
I was following the "ModalWithNavigatorCoordinator' example. Everything is fine but I cant dismiss the ViewController housing the RCTRootView.
I do get a callback in:
but the self.delegate is nil. Also I noticed whenever I execute the call to open my react native component, I get this log:
"ReactNativeTest" is the name of my iOS project and MySectionList is the name of my React-Native project.
The text was updated successfully, but these errors were encountered: