RippleContainer constructor

const RippleContainer({
  1. required Widget child,
  2. double? width,
  3. double? height,
  4. ContainerDecoration? decoration,
  5. RippleCallbacks? rippleCallbacks,
  6. bool enabled = true,
  7. Key? key,
})

Implementation

const RippleContainer({
  required this.child,
  this.width,
  this.height,
  this.decoration,
  this.rippleCallbacks,
  this.enabled = true,
  super.key,
});