Hi folks, I am new to FlutterFlow but do have extensive coding experience. I use the free FlutterFlow version.
I am trying to have a dynamically populated ListView of Components from a Firebase document.
When the children of the ListView are not components (say it's just a collection of widgets), then you can easily find what needs to be populated from what (say you find a "text" widget and you populate it from the "name" object from your collection).
For example, the "text" widget in the Column can be populated dynamically from the "Exercises Document".
However, when I converted the ListView child to a "Component" I cannot find a way from the UI to pass in the document data to it. From code inspection, I can see that the original data I was passing in are still passed in, but I do not see a way to edit/add/remove any data parameters any more from the Firebase document collection.
So, in the image below, parameter1 is been passed from the Firebase document that the parent ListView has queried for. How do I edit this? How do I pass more parameters if I need?
Many thanks in advance