Open Kranthi94 opened 6 months ago
Hi,
I integrated expandable with a list view. Below is the widget tree.
ExpandableNotifier ---> ListView ---> ListViewItem ---> ScrollOnExpand ---> ExpandablePanel (expandableController)
Issue is that when we are expanding one of the items in the list is expanding all the items in the list.
You are using a single controller for all elements, you must create a controller for each one. The fastest option is to use a Builder and inside it create a controller for each element.
Hi,
I integrated expandable with a list view. Below is the widget tree.
ExpandableNotifier ---> ListView ---> ListViewItem ---> ScrollOnExpand ---> ExpandablePanel (expandableController)
Issue is that when we are expanding one of the items in the list is expanding all the items in the list.