oi-narendra / multiselect-dropdown

Streamlined Flutter widget for versatile multi-selection with extensive customization.
https://pub.dev/packages/multi_dropdown
GNU General Public License v3.0
73 stars 83 forks source link

Disabled color is hardcoded to grey instead of using either decoration or theme #174

Open bartvanandel opened 6 days ago

bartvanandel commented 6 days ago

Most colors are properly configurable using the various decorations, or use theme colors. Except for disabled state, colors are hardcoded to Colors.grey (for the prefix icon) and Colors.grey.shade100 (for the chip). Why not provide e.g. chipDecoration.disabledColor, or at least use Theme.of(context).disabledColor?