multiselect_formfield
multiselect_formfield copied to clipboard
A Flutter package that provides a multi select form field using alert dialog to select multiple items with checkboxes and showing as chips.
Is there a way to update the value being selected from outside of multiselect_formfield? Example. I am looking to implement a clear button and clear multiple edit items at once.
The two widgets: ```dart CustomScrollView(shrinkWrap: true, slivers: [ SliverToBoxAdapter( child: Column(children: [ Container( height: 1, color: kColorUltraLightGrey, ), SizedBox(height: 28), EditTextField( label: Utils.t(context, 'interim_note_form.note'), padding: EdgeInsets.symmetric(horizontal: 16), isExpandable: true, controller:...
``` ════════ Exception caught by widgets library ═══════════════════════════════════ The following _TypeError was thrown building MultiSelectFormField(dirty, dependencies: [_InheritedTheme, _LocalizationsScope-[GlobalKey#9fe74]], state: FormFieldState#113e5): type '() => Null' is not a subtype of type...
when passing a list of string to initialValue , below exception occurs: ``` The following NoSuchMethodError was thrown building MultiSelectFormField(dirty, dependencies: [_FormScope, _InheritedTheme, _LocalizationsScope-[GlobalKey#d3d5a]], state: FormFieldState#31c19): The method '[]' was...
``` The method '[]' was called on null. Receiver: null Tried calling: []("display") ``` I am using hardcoded list to test but its not working. ``` MultiSelectFormField( title: Text( "Title...
I am making a dark theme in my app, and hence needed the title of the main widget to be white to be able to see it, but then i...
I like the control, but I need a way to allow for filtering using an async function which returns results from server. Any plans to support that?