-
Notifications
You must be signed in to change notification settings - Fork 229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MultiSelectChipDisplay : custom icon doesn't replace default icon(Icons.checked). #189
Comments
I have the same problem as Razvan (director2010s) have. I can't use a custom |
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
|
@florentin89 I mean, you can find ChoiceChip Widget in MultiSelectChipDisplay Widget.( you should find
|
For now you can just add
To your ThemeData in MaterialApp |
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: provider.arrSavedPromoters.map((e) => MultiSelectItem(e, e.username)).toList(),
icon: const Icon( Icons.highlight_remove, color: Colors.red,),
// icon: const Icon( Icons.check, color: Colors.red,),
chipColor: Colors.green,
textStyle: const TextStyle(color: Colors.black),
onTap: (item) {
provider.onRemoveAddedPromoter(item.paymail);
},),
The text was updated successfully, but these errors were encountered: