I have NavigatorIOS set up to display screens that are populated by a JSON file fetched from our server. This file is cached locally so the app can run offline as well.
When the server updates the JSON, the app downloads the new JSON in the background and then emits an event telling the app to reset the navigation stack and use the new JSON file going forward. For the most part this works great.
Th trouble I am having is that screens that have previously been viewed in the navigation stack are still cached (presumably by NavigatorIOS/React-Native) and do not use the latest JSON data.
It does work if I exit and relaunch the app however
Is there a way to clear the cache of screens on then navigation stack, or to force a refresh/reload?
Using popToTop() doesn't remount the initial component, therefore any props being passed down will not be updated.