multiselect_formfield icon indicating copy to clipboard operation
multiselect_formfield copied to clipboard

A Flutter package that provides a multi select form field using alert dialog to select multiple items with checkboxes and showing as chips.

Results 41 multiselect_formfield issues
Sort by recently updated
recently updated
newest added

It is easier to adapt to theme change when the color is not hard-coded

I suggest changing the title field from String to Text, thus increasing the possibilities of customizing that field.

value not found in this package

Hi, can you include a check option that can selects and deselect all the options at once by toggling?

Hey is it possible to set few items as default?

Hello, Is posible to change the color chips ? This would be really good. thanks!

I have trying out example from here https://pub.dev/packages/multiselect_formfield . instead of 7 datasource items I gave 14 items. I am getting below error. ⣷I/flutter (31891): ══╡ EXCEPTION CAUGHT BY WIDGETS...

While we edit the controller if the existing ids are not available then it should show empty instead of the error.

Returning null around here `var existingItem = dataSource!.singleWhere(((itm) => itm[valueField] == item), orElse: () => null);` at line 72 is causing this. I think should replace null by [] but...