flutter_chips_choice
flutter_chips_choice copied to clipboard
Too bad I spent 2 days just wondering how to customize the chips card. Really disappointed: '(
How did you change it? I'm facing this issue too. Please share, thanks
style: (index, hello) { return C2ChoiceStyle( color: const Color(0xff4e4bac) .withOpacity(0.7)); }, activeStyle: (index, hello) { return const C2ChoiceStyle( color: Color(0xff4e4bac)); }, value: (i, v) => v, label: (i, v) => v, ), choiceStyle: const C2ChoiceStyle( color: Color(0xff18203d), brightness: Brightness.dark),
If the choiceStyle option doesn't met your requirement, you can use choiceBuilder option to create a custom chip widget, here is the example