flutter_chips_choice icon indicating copy to clipboard operation
flutter_chips_choice copied to clipboard

Too bad I spent 2 days just wondering how to customize the chips card. Really disappointed: '(

Open hafquangbaox opened this issue 4 years ago • 2 comments

hafquangbaox avatar Mar 21 '21 05:03 hafquangbaox

How did you change it? I'm facing this issue too. Please share, thanks

davidp918 avatar Jun 01 '21 03:06 davidp918

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),

basnetjiten avatar Jan 25 '22 08:01 basnetjiten

If the choiceStyle option doesn't met your requirement, you can use choiceBuilder option to create a custom chip widget, here is the example

davigmacode avatar Sep 22 '22 03:09 davigmacode