getButtonHoverBackgroundColor static method
Color
getButtonHoverBackgroundColor(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static Color getButtonHoverBackgroundColor(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.buttonHoverBackgroundColor ??
style?.buttonHoverBackgroundColor ??
getStyleByType(UpConfig.of(context).theme, colorType)
.buttonHoverBackgroundColor ??
Theme.of(context).primaryColor;
}