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(
(FlutterUpConfig.of(context)?.theme ??
UpConstants.kDefaultTheme),
colorType)
.buttonHoverBackgroundColor ??
Theme.of(context).primaryColor;
}