multi_select_flutter
multi_select_flutter copied to clipboard
A flexible multi select package for Flutter. Make multi select widgets the way you want.
Hey community, Looks like the author completely abandonned this great package. Has anyone came with a fork of this and is willing to take on the maintenance of it ?...
I am passing dynamic new items when this popup comes. But when I choose new value it also comes with old values (which I have selected previously for old items).
hello .. how can I limit user selection like only allow him to select one item thanks...
https://user-images.githubusercontent.com/73294440/179403903-e5229e1d-8e65-44c9-9eed-89404becceb2.mp4
Please check screenshot for my UI. https://prnt.sc/nEmSOC_ZxUgg remove icon and checked icon is overlapped. checked icon should be removed, but it is still existing with remove icon together. MultiSelectChipDisplay( items:...
I want to set the initial value of some items as checked. Can we do that in MultiSelectDialogField ``` MultiSelectDialogField( searchable: true, items: _employees .map((employee) => MultiSelectItem( employee, '${employee.fullName} (${employee.employeeCode})',...
The list ends up being sorted alphabetically by `label` of the `MultiSelectItem()`, ignoring both the original order of `items` and the `compareTo` function of `value`. Ideally there would be a...
When showing a MultiSelectBottomSheet and tapping outside its area (to dismiss) we get an Exception: "Null check operator used on a null value)  I suppose the _selectedItems variable should...
You can test by this code below. ``` class Test extends StatefulWidget { const Test({super.key}); @override State createState() => _TestState(); } class _TestState extends State { final items = [1,...