akbarpulatov / flutter_awesome_select

Forked from https://github.com/davigmacode/flutter_smart_select, updated legacy code, migrated to null safety and more. AwesomeSelect allows you to easily convert your usual form select or dropdown into dynamic page, popup dialog, or sliding bottom sheet with various choices input such as radio, checkbox, switch, chips, or even custom input. Supports single and multiple choice.
https://pub.dev/packages/awesome_select
MIT License
48 stars 56 forks source link

No choiceGroupBuilder #11

Closed Panjamin closed 3 years ago

Panjamin commented 3 years ago

Code: choiceGroupBuilder: (context, header, choices) { return StickyHeader( header: header, content: choices, ); },

show error: The named parameter 'choiceGroupBuilder' isn't defined.

i want to use StickyHeader, but do not work

Panjamin commented 3 years ago

i find groupBuilder: (context, state, group) { return StickyHeader( header: state.groupHeader(group), content: state.groupChoices(group), ); },