Last updated:
0 purchases
simple dropdown
A simple pulgin to create dropdown textfield.
Features #
To create dropdown textfield.
How to use. #
dynamic selected_value;
SimpleDropdown(
hintText:Text('hello',
style: Theme.of(context).headline3),
options: [a,b,c]
value: selected_value,
onChanged: (value){
setState(() {
selected_value = value;
});
},
getLabel: (value){
return value.toString();
},
),
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.