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