Hello everyone,
I'm working on a FlutterFlow project where I have a ListView displaying items of type "exercise" with multiple fields (e.g., name, category, sets, repetition and description) retrieved from a SQLite database. Each item in the ListView has a Checkbox. What I want to achieve is the following:
Allow users to select multiple items using the Checkboxes in the ListView.
Upon clicking a "Next" button, pass a list containing all the selected
Exerciseobjects (with all their fields) to the next page.On the next page, I want to display this list in a reorderable format.
The problem I'm facing is adding the current Exercise item to a list when a Checkbox is checked. In the FlutterFlow interface, I can't seem to find the option to add the entire current item (with all its fields) to a local list. I need to be able to collect the selected items with all their data and pass this list to the next page.
Has anyone successfully done something similar in FlutterFlow? How can I add the current item with all its properties to a list and then pass this list to the next page?
Thanks for your help!