I have opened a model within the screen using Navigation.showModal(....)
, now i want to watch for that modal dismiss in that same screen. I have checked the doc and can't find any suitable event, can any one help me with that.
We use the issue tracker exclusively for bug reports and feature requests. This issue appears to be a general usage or support question. Instead, please ask a question on Stack Overflow with the react-native-navigation
tag.
Since it's not documented, I thought the event is not available. Finally found that event
Navigation.events().registerModalDismissedListener(({ componentId, modalsDismissed }) => {
});
Most helpful comment
Since it's not documented, I thought the event is not available. Finally found that event