Skip to content

Instantly share code, notes, and snippets.

@iamEtornam
Created April 1, 2019 09:52
Show Gist options
  • Save iamEtornam/48a0765a754d91c5879d7022223649bd to your computer and use it in GitHub Desktop.
Save iamEtornam/48a0765a754d91c5879d7022223649bd to your computer and use it in GitHub Desktop.
example of dropdownbutton in flutter
DropdownButton(
iconSize: 45.0,
items: <String>[
'MTN',
'TIGO',
'AIRTEL'].map((String value) {
return DropdownMenuItem<String>(
value: value,
child: Text(value),
);
}).toList(),
onChanged: (String value) {
isSelected = value;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment