NUIBouncingAnimation constructor
const
NUIBouncingAnimation({
- Key? key,
- required Widget child,
- required VoidCallback onTap,
- VoidCallback? onLongPress,
- double scaleFactor = 1,
- Duration duration = const Duration(milliseconds: 200),
Implementation
const NUIBouncingAnimation({
Key? key,
required this.child,
required this.onTap,
this.onLongPress,
this.scaleFactor = 1,
this.duration = const Duration(milliseconds: 200),
}) : super(key: key);