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.
Is there a technique I can use with the existing API to be able to add a sticky footer to the choice selection area? I need to place an action button in it.
My design had originally included the action button as a persistent header for the menu area and I was able to kludge it by creating a custom header and putting my choices into a faux-group that header was associated with.
Ideally, I would like to be able to provide a custom widget to behave as the choice area (popup, bottom sheet, modal, etc), and that component's child area would hold the choice area produced by this component. That would ensure full control over the "chrome" around the content area and allow for a wide range of customizations.
Is there a technique I can use with the existing API to be able to add a sticky footer to the choice selection area? I need to place an action button in it.
My design had originally included the action button as a persistent header for the menu area and I was able to kludge it by creating a custom header and putting my choices into a faux-group that header was associated with.
Ideally, I would like to be able to provide a custom widget to behave as the choice area (popup, bottom sheet, modal, etc), and that component's child area would hold the choice area produced by this component. That would ensure full control over the "chrome" around the content area and allow for a wide range of customizations.