flutter_multiselect 0.1.0 copy "flutter_multiselect: ^0.1.0" to clipboard
flutter_multiselect: ^0.1.0 copied to clipboard

outdated

Flutter package for multi-select UI widget, that compatible to both iOS and Android and uses neutral design.

flutter_multiselect #

Flutter package for multi-select UI widget

Getting Started #

add package in your pubspec.yaml flutter_multiselect: 0.0.1

and import in your project to start using the multiselect.

By default, there is no UI contro for multi-select in iOS and Android

This widget can be used for bridge that gap.

Sample Usage -

new MultiSelect( autovalidate: false, titleText: title, validator: (value) { if (value == null) { return 'Please select one or more option(s)'; } }, errorText: 'Please select one or more option(s)', dataSource: [ { "display": "Australia", "value": 1, }, { "display": "Canada", "value": 1, }, { "display": "India", "value": 3, }, { "display": "United States", "value": 4, }], textField: 'display', valueField: 'value', filterable: true, required: true, value: null, onSaved: (value) { print('The value is $value'); });

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

50
likes
0
pub points
92%
popularity

Publisher

verified publisherhiddencaliber.com

Flutter package for multi-select UI widget, that compatible to both iOS and Android and uses neutral design.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_multiselect