ButtonSplashStyle.ink constructor
ButtonSplashStyle.ink({
- Color? inkColor,
- double inkOpacity = 0.1,
- BorderRadius? borderRadius,
- WidgetStateProperty<
Color?> ? overlayColor,
Quick ink splash effect Faster, more responsive feel
Implementation
factory ButtonSplashStyle.ink({
Color? inkColor,
double inkOpacity = 0.1,
BorderRadius? borderRadius,
WidgetStateProperty<Color?>? overlayColor,
}) {
return ButtonSplashStyle._(
type: ButtonSplashType.ink,
splashColor: inkColor,
splashOpacity: inkOpacity,
borderRadius: borderRadius,
splashFactory: InkSplash.splashFactory,
overlayColor: overlayColor,
);
}