Hello FlutterFlow Community,
I am currently working on a project where I am using FFAppState to manage data between pages. The scenario is as follows:
On the Main Page, I have a ListView that displays items. Each item contains a unique hashID and catId. List view is infinite scroll view
When the Main Page loads, I store the data in FFAppState.
Upon navigating to a Sub-Page, I allow the user to update the catId for a specific hashID.
After the update, I store the modified list in FFAppState.
However, the issue is that when I navigate back to the Main Page, the ListView doesn't automatically refresh to reflect the updated catId for that specific hashID, even though FFAppState has been updated correctly.