multi_select_flutter icon indicating copy to clipboard operation
multi_select_flutter copied to clipboard

A flexible multi select package for Flutter. Make multi select widgets the way you want.

Results 113 multi_select_flutter issues
Sort by recently updated
recently updated
newest added

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...

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) ![image](https://user-images.githubusercontent.com/674909/220632705-9080a69e-db35-43c2-8b7e-de16bd65652f.png) 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,...