A flutter widget to easily use dropdowns
Features
A minimalistic dropdown which takes a list of string and a function of string
Getting started
get the package and start using it
Usage
MyDropDown(
values: getItems(),
onValueChanged: (value) {
controller.getAnswerById(widget.question.id).answer = value;
},
labelText: widget.question.name,
);
Additional information
I created this packages to do easily show dropdowns.