Florentin Lupascu
Florentin Lupascu
I have the same problem as Razvan (director2010s) have. I can't use a custom `Icon` for `MultiSelectChipDisplay`. Did anyone found a solution for this bug ? I'm thinking to clone...
> you can add value (showCheckmark: false) at ChoiceChip in MultiSelectChipDisplay Hi @alex-dh-kim , I can't find anywhere that option. Can you guide me please how to access that `showCheckmark`...
Here is the fix: ``` MultiSelectDialogField( initialValue: [_animals[0]], items: _items, title: Text("Animals"), selectedColor: Colors.blue, decoration: BoxDecoration( color: Colors.blue.withOpacity(0.1), borderRadius: BorderRadius.all(Radius.circular(40)), border: Border.all( color: Colors.blue, width: 2, ), ), buttonIcon: Icon(...
In `easy_autocomplete.dart` file do next: 1. On line 97 implement a boolean property like this: `final bool? isTextFormFieldEnabled;`. 2. On line 119 after property called `validator` implement the new boolean...
A fix could be on the class `easy_autocomplete.dart` on line 277 where the `dispose()` method is called. Instead of: ```if (_overlayEntry != null) _overlayEntry!.dispose(); ``` Use: ``` if (_overlayEntry !=...