drop_down_list 0.0.1 copy "drop_down_list: ^0.0.1" to clipboard
drop_down_list: ^0.0.1 copied to clipboard

outdated

A drop down list with single and multiple selection that will work with search.

Highly versatile Widget to search through a single or multiple choices from bottom sheet list in a dialog box or a menu.

Platforms #

This plugin has been successfully tested on iOS, Android & web.

Examples #

The following examples are extracted from the example project available in the repository. More examples are available in this project.

Samples of Dropdown list with choices #

drop-down-list

drop-down-list

Installation #

drop_down_list: ^1.0.0

How to Use #

              DropDown(
                submitButtonText: 'Submit',
                submitButtonColor: Colors.blue,
                searchHintText: 'Search.....',
                bottomSheetTitle: 'Cities',
                searchBackgroundColor: Colors.black12,
                listOfData: _listOfCities,
                callbackForMultipleSelectedItems: (List<dynamic> selectedList) {
                  print('Multiple Selected ::: $selectedList');
                },
                callbackForSelectedItem: (String selected) {
                  print('Single Selected ::: $selected');
                },
              ),
            ).showModal(context);

LICENSE! #

Dropdown list is MIT-licensed.

Let us know! #

We’d be really happy if you send us links to your projects where you use our component. Just send an email to sales@mindinventory.com and do let us know if you have any questions or suggestion regarding our work.

237
likes
0
pub points
95%
popularity

Publisher

verified publishermindinventory.com

A drop down list with single and multiple selection that will work with search.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on drop_down_list