Guest User

Untitled

a guest
Mar 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. @override
  2. Widget build(BuildContext context) {
  3. return new Container(
  4. color: Colors.white,
  5. child: new Center(
  6. child:
  7. new DropdownButton(
  8. value: _currentCity,
  9. items: _dropDownMenuItems,
  10. onChanged: changedDropDownItem,
  11. )
  12. )
  13. );
  14. }
  15.  
  16. void changedDropDownItem(String selectedCity) {
  17. print("Selected city $selectedCity, we are going to refresh the UI");
  18. setState(() {
  19. _currentCity = selectedCity;
  20. });
  21. }
Add Comment
Please, Sign In to add comment