When the dropdown is disabled it has this default black text color, which I want to change. There is an option to change the icon color but no option for text color.
Any help would be greatly appreciated.
DropdownButtonFormField(
value: widget.selectedValue,
items: widget.dropdownItems,
dropdownColor: customTheme.colors.black30,
iconEnabledColor: customTheme.colors.textColor,
iconDisabledColor: Color.fromARGB(143, 144, 144, 144),
You can change using style
Here you can find more: https://www.flutter-code.com/2021/06/flutter-dropdownbutton-selected-text.html