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