select_multi_dropdown
Multi-Select Dropdown package lets you add a customizable multi-select dropdown widget to your Flutter app.
Installation
- Add the latest version of the package to your
pubspec.yaml
(and rundart pub get
):
dependencies:
select_multi_dropdown: ^0.0.2
- Import the package and use it in your Flutter App.
import 'package:select_multiple_dropdown/select_multi_dropdown.dart';
Example
There are a number of properties that you can modify:
- items (List of items to select from)
- initialSelectedItems (List of initially selected items)
- onSelectionChanged (Callback when selection changes)
- hintText (Hint text for the dropdown)
|
Next Goals
-
x
Add customization for dropdown styling. Now, you can specify the styling properties for the dropdown. -
x
Add support for different item types. The dropdown supports various data types like strings, numbers, etc. -
This template provides a clear and concise README.md that explains the installation, usage, and features of your select_multi_dropdown
package. It also includes an example with code and an image placeholder to illustrate the widget's usage in a Flutter app.