simple_search_dropdown 1.0.0 copy "simple_search_dropdown: ^1.0.0" to clipboard
simple_search_dropdown: ^1.0.0 copied to clipboard

outdated

A dropdown that offers a search bar, multiple and single selections.

Search Dropdown #

Search DropDown is a dropdown that offers a search bar, multiple and single selections.

Import #

import 'package:searchdropdown/simple_search_dropdown.dart';

Getting Started #

This project is a widget to find items in a list without sacrifying beauty and usefulness:

  • Different styles: Search DropDown can be customized with various styles, including colors, text styles, icons, and more.
  • Multiple and single options: Search DropDown can be used to select multiple or single items.
  • Add and Delete Mode: Search Dropdown accepts functions to add and delete items from the list inside it
  • Compact and Simple: Search DropDown is very compact and takes up very little space on the screen.

Usage #

Features #

Add Mode:

[Add Mode]

Delete Mode:

[Delete Mode]

[Search Feature]

1. Single SearchDropDown #

    SearchDropDown(
        listItens: listitems,
        onDeleteItem: removeItem, 
        onAddItem: addItem,
        addMode: true,
        deleteMode: true,
        updateSelectedItem: updateSelectedItem,
    ),

[Single Menu]

2. Multiple SearchDropDown #

    MultipleSearchDropDown(
        listItems: listitems,
        onDeleteItem: removeItem, 
        onAddItem: addItem,
        addMode: true,
        deleteMode: true,
        selectedItems: selectedMultipleItems,
        updateSelectedItems: updateSelectedItems,
    ),

[Multi Menu]

[Multi Menu Selection]

License #

License

10
likes
0
points
506
downloads

Publisher

unverified uploader

Weekly Downloads

A dropdown that offers a search bar, multiple and single selections.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, stringr

More

Packages that depend on simple_search_dropdown