Just adding isExpanded:true to the DropdownButton
Widget example() {
return DropdownButton(
isExpanded: true,
items: const [
DropdownMenuItem(child: Text("Abc")),
DropdownMenuItem(child: Text("Xyz")),
],
hint: const Text("Select City"),
onChanged: null
);
}