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

A Flutter package that provides a customizable multiselect dropdown widget.

multi_select_dropdown #

Multiselect Dropdown for Flutter #

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 multiselect_dropdown as a dependency in your pubspec.yaml file.

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

USAGE:

  1. Import the package in your Dart file.

    import 'package:multi_select_dropdown/multi_select_dropdown.dart';

  2. Use the MultiSelectDropdown widget.

    MultiSelectDropdown( 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; }, ),

3
likes
140
points
67
downloads

Publisher

unverified uploader

Weekly Downloads

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