You can set isDense and isExpanded to true and wrap the hint widget with Align to center it:
isDense: true,
isExpanded: true,
hint: Align(
alignment: Alignment.center,
child: yourHintWidget,
),
This will center the hint widget within the dropdown.