Home > Enterprise >  Flutter multiselection searchable dropdown with selected item added to field as chip
Flutter multiselection searchable dropdown with selected item added to field as chip

Time:12-23

is there a way to have inputtextfield with dropdown list, and once item in selected dropdown field selected, add the selected item to textinputfield as image below? I have tried dropdown_search package, it does not meet my requirement as the search bar is in the dropdown list and the list of item in drop down has checkbox.

https://i.stack.imgur.com/95YEC.png

CodePudding user response:

you can use this package

flutter pub add textfield_tags

CodePudding user response:

Simple solution for this -> https://fluttertpoint.com/searchable-dropdown-flutter

  • Related