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