NUIRippleContainer constructor

NUIRippleContainer({
  1. required Widget child,
  2. double radius = 100,
  3. BorderRadius? borderRadius,
  4. Color? rippleColor,
  5. Color? highlightColor,
  6. Color? normalColor = NUIColors.NUITransparent,
  7. GestureTapCallback? onTap,
  8. GestureTapCallback? onDoubleTap,
  9. GestureLongPressCallback? onLongPress,
  10. Key? key,
})

Implementation

NUIRippleContainer({required this.child, this.radius = 100, this.borderRadius, this.rippleColor, this.highlightColor, this.normalColor = NUIColors.NUITransparent, this.onTap, this.onDoubleTap, this.onLongPress, Key? key}) : super(key: key);