BouncingButton constructor
const
BouncingButton({
- Key? key,
- required double? buttonWidth,
- required double? buttonHeight,
- required Duration? bouncingDuration,
- required Curve? curve,
- required VoidCallback? onClick,
- double? buttonBouncingWidth,
- Decoration? buttonDecoration,
- EdgeInsetsGeometry? buttonMargin,
- EdgeInsetsGeometry? buttonPadding,
- AlignmentGeometry? alignment,
- Widget? child,
Implementation
const BouncingButton({
Key? key,
required this.buttonWidth,
required this.buttonHeight,
required this.bouncingDuration,
required this.curve,
required this.onClick,
this.buttonBouncingWidth,
this.buttonDecoration,
this.buttonMargin,
this.buttonPadding,
this.alignment,
this.child,
}) : super(key: key);