hourMinuteColor property
final
The background color of the hour and minute header segments.
If hourMinuteColor is a WidgetStateColor, then the effective background color can depend on the WidgetState.selected state, i.e. if the segment is selected or not.
By default, if the segment is selected, the overall theme's
ColorScheme.primary.withValues(alpha: 0.12) is used when the overall theme's
brightness is Brightness.light and
ColorScheme.primary.withValues(alpha: 0.24) is used when the overall theme's
brightness is Brightness.dark.
If the segment is not selected, the overall theme's
ColorScheme.onSurface.withValues(alpha: 0.12) is used.
Implementation
final Color? hourMinuteColor;