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