dropdown_multi_select 0.0.2 copy "dropdown_multi_select: ^0.0.2" to clipboard
dropdown_multi_select: ^0.0.2 copied to clipboard

A Flutter package that provides a customizable multiselect dropdown widget.

drop_down_multiselect #

A Flutter package that provides a customizable multiselect dropdown widget.

Features #

  • Allows users to select multiple options from a dropdown list.
  • Customizable appearance and behavior.
  • Supports both single and multiple selections.

Getting Started #

To use this package, add dropdown_multi_select as a dependency in your pubspec.yaml file.

dependencies: flutter: sdk: flutter multi_select_dropdown: ^1.0.0 # Replace with the latest version

USAGE:

  1. Import the package in your Dart file.

    import 'package:dropdown_multi_select/dropdown_multi_select.dart';

  2. Use the MultiSelectDropdown widget.

          DropdownMultiSelect(
             dropdownValueList: countries,
             selectedTileColor: Colors.lightBlue,
             hintStyle: const TextStyle(
                 fontSize: 16,
                 fontWeight: FontWeight.w400,
                 color: Colors.black),
             decoration: BoxDecoration(
               border: Border.all(),
             ),
             deleteIconColor: Colors.red,
             hint: "Select Country",
             onChanged: (selectedList) {
               selectedValueList = selectedList;
             },
           ),
    
2
likes
120
pub points
72%
popularity

Publisher

unverified uploader

A Flutter package that provides a customizable multiselect dropdown widget.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on dropdown_multi_select