multiple_select 0.1.3 copy "multiple_select: ^0.1.3" to clipboard
multiple_select: ^0.1.3 copied to clipboard

outdated

A versatile and beautiful multi-drop-down component for App developers.

multiple_select #

License Pub

A versatile and beautiful multi-drop-down component for App developers.🚀

multiple_select.gif

Getting Started #

dependencies:
 multiple_select: ^0.1.3

Usage example #

MultipleSelect

MultipleSelect.showMultipleSelector(
                context,
                dataList: List.generate(15, (index) => MultipleSelectItem.build(value: index, display: '第$index项显示内容', content: '第$index项下拉内容')),
              ).then((selectedList) {
                if (selectedList != null) selectedList.forEach((item) => print(item.display));
              });

MultipleDropDown

MultipleDropDown(
          placeholder: '请选择',
          elements: List.generate(15, (index) => MultipleSelectItem.build(value: index, display: '第$index项显示内容', content: '第$index项下拉内容')),
          onConfirm: (elements) {
            elements.forEach((element) => print(element.display));
          },
        )

Contribute #

We would ❤️ to see your contribution!

License #

Distributed under the MIT license. See LICENSE for more information.

About #

Created by Shusheng.

10
likes
0
pub points
54%
popularity

Publisher

unverified uploader

A versatile and beautiful multi-drop-down component for App developers.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on multiple_select