I've a requirement to display "popover with additional details" on click of list item.
I tried simple example with popover: ^0.2.8+2 (https://pub.dev/packages/popover). This is working.
The question is , how to display similar popover on the list item.
I can think about following 2 options
Option - 1.
Create a listview in custom widget itself and call 'showPopover' function on each list item.
However, I'm not sure how to dynamically iterate the Json and create list view.
Usually, this is done quite easily in List view using (Generate children from variable).
Kindly suggest with any example / link etc.
Option - 2
The other approach was to create list view in flutterflow page and use 'Generate children from variable' . and on tap call 'showPopover' function, but I'm not sure if this can be done.
Kindly suggest ..
Many Thanks !!
Harshad