-
Notifications
You must be signed in to change notification settings - Fork 0
10.Dropdown
Siddhant edited this page Jun 4, 2019
·
1 revision
var _current_selected_item="Rupees";
DropdownButton<String>(items: _currencies.map((String dropdown){
return DropdownMenuItem<String>(
value: dropdown,
child: Text(dropdown),
);
}).toList(),onChanged:(String newSelectedText)
{
setState(() {
this._current_selected_item=newSelectedText;
});
},
value: this._current_selected_item,),