disabledColor property

Color? disabledColor
final

The disabled Color of the TypeSelector. Is displayed when an option is not selected. The default value is:

Theme.of(context).disabledColor;

Example of usage:

TypeSelector(
  disabledColor: Colors.grey,
  // other properties
);

Implementation

final Color? disabledColor;