RippleOverlay constructor

const RippleOverlay({
  1. Key? key,
  2. required Widget child,
  3. Duration waveDuration = const Duration(milliseconds: 600),
  4. int wavesCount = 2,
  5. double extraPadding = 10.0,
  6. double strokeWidth = 2.0,
  7. Color color = const Color(0x66000000),
})

Implementation

const RippleOverlay({
  super.key,
  required this.child,
  this.waveDuration = const Duration(milliseconds: 600),
  this.wavesCount = 2,
  this.extraPadding = 10.0,
  this.strokeWidth = 2.0,
  this.color = const Color(0x66000000),
});