I want to completely remove dropdown menu's trailing icon. I added below code to remove it.
DropdownMenu<ColorLabel>(
trailingIcon: SizedBox.shrink(),
selectedTrailingIcon: SizedBox.shrink(),
initialSelection: ColorLabel.green,
controller: colorController,
However the clickable area (or whatever the name is) is still appears. Is it possible to remove completely?
