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

A Dropdown search widget with uses a text filed as its search bar.

Features #

A Dropdown List with TextField search and Keyboard support.

Arrow_UP & Arrow_DOWN : for travelling in the list

Enter_KEY : Selects the current selected item in the list

Escape_KEY : Closes the Dropdown overlay and reset the search TextField

Note : Currently, only working for String list items.

Getting started #

Add this line to your file.

import 'package:dropdown_text_search/src/flutter_dropdown_text_search.dart';
copied to clipboard

Usage #

TODO: Include short and useful examples for package users. Add longer examples to /example folder.

SizedBox(
    width: 250,
    child: DropdownTextSearch(
        onChange: (val){
            print(val);
            _controller.text = val;
        },
        noItemFoundText: "Invalid Search",
        controller: _controller,
        overlayHeight: 300,
        items: citiesData,
        filterFnc: (String a,String b){
          return a.toLowerCase().startsWith(b.toLowerCase());
        },
        decorator: UIComponents.inputDecoration(
            context: context,
            hint: "All"
        ),
    )
)
copied to clipboard

Additional information #

Repo: dropdown_text_search

Found any issues, report here

4
likes
70
points
209
downloads

Publisher

verified publisherbk14billi.me

Weekly Downloads

2024.07.06 - 2025.01.18

A Dropdown search widget with uses a text filed as its search bar.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on dropdown_text_search