I want to have page A reload, re-run the Http requests, once I pop back to it from another page that lets you edit the data page A displays. The other page is triggered by a long press in a ListView generated by a function within page A. IE: Page A:
_PageAState
- Reload function I need to call
Scaffold
List item
Text
- ETC...
- Expanded
- ListView
- Gesture Detector that navigates
- ListView
- ETC
How can I trigger a function of any sort or make the page reload when I pop back to it?
I've tried passing data from the pop and using an if statement but the nested structure messes it up.