easy_search_selectable_list 0.0.5 easy_search_selectable_list: ^0.0.5 copied to clipboard
The easiest way to use selectable dropdown list.
Hey coders this easy dropdown field
Features #
Searchable dropdown list
Getting started #
List prerequisites and provide or point to information on how to start using the package.
Usage #
Easy Search Selectable List
single value selectable list
EasySearchSelectableDropdown(
textEditingController: _areaTextEditingController,
title: 'Area',
hint: 'Select area',
options: _areaList,
selectedOptions: _selectedArea,
onChanged: (selectedIds) {
// setState(() => selectedIds);
},
),
Multiple value selectable list #
EasySearchSelectableDropdown(
textEditingController: _areaTextEditingController,
title: 'Area',
hint: 'Select area',
options: _areaList,
selectedOptions: _selectedArea,
onChanged: (selectedIds) {
// setState(() => selectedIds);
},
),
Installation #
dependencies:
easy_search_selectable_list: ^0.0.3;