drop_down_easy_search 0.0.2 drop_down_easy_search: ^0.0.2 copied to clipboard
An easy to use dropDown with search Functionality.
An easy to use Drop Down With Search Functionality with full control and Customizable .
Features #
Show the DropDown Widget with Search Functionality.Github Example Link
Getting started #
Import the package and then use the FlutterDropDownSearch widget and pass necessary requirement List
Usage #
to /example
folder.
import 'package:drop_down_easy_search/drop_down_easy_search.dart';
List<String> items=["Farooq","Administrator","Sir Shehzad","Sarmad","Asad"];
TextEditingController testEditingController = TextEditingController();
FlutterDropdownSearch(
textFieldBorder: InputBorder.none,
hintText: "Choose Employee",
textController: testEditingController,
items: items,
dropdownHeight: 200,
style: TextStyle(color: Colors.grey,fontWeight: FontWeight.w600)
)
Additional information #
You can find example in my github repository