my_dropdown_widget 1.0.0
my_dropdown_widget: ^1.0.0 copied to clipboard
A Simple dropdown which takes list of string and a function of string.
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.