I am working with a flutter project and there is a dropdown menu that shows all the countries as a default. It shows Afghanistan, but I want to show India as default:
CountryPickerDropdown(
onTap: () =>
FocusScope.of(context)
.requestFocus(
FocusNode()),
onValuePicked: (
Country country) {
print("${country.name}");
},
itemBuilder: (Country country) {
return Row(
children: <Widget>[
CountryPickerUtils
.getDefaultFlagImage(
country),
Expanded(
child: Text(
country.isoCode,
),
),
],
);
},
itemHeight: null,
isExpanded: true,
icon: SizedBox(),
)
Does anyone know how to do it? Thanks in advance