Hi everyone,
I'm currently building an app with FlutterFlow and I have a question about navigating between pages while passing data.
Here's what I'm trying to do:
I have a ListView showing items from a Firestore collection.
When I tap an item, I want to navigate to a details page and display more information about that item.
The problem is, I’m not sure how to pass the selected item’s data (like name, description, image) to the details page. I tried using parameters but either I’m setting them wrong or missing a step.
Some specific questions:
What’s the correct way to send data from one page to another in FlutterFlow?
Do I need to manually set parameters on the second page and bind them in the UI?
Can I pass the entire document or only specific fields?
Any help, example, or documentation link would be really appreciated. Thank you!