getDatePickerOnSurfaceColor static method
Color
getDatePickerOnSurfaceColor(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static Color getDatePickerOnSurfaceColor(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.datePickerOnSurfaceColor ??
style?.datePickerOnSurfaceColor ??
getStyleByType(
UpConfig.of(context).theme,
colorType,
).datePickerOnSurfaceColor ??
Theme.of(context).colorScheme.primary;
}