BounceCircleAvatar constructor
const
BounceCircleAvatar({
- required VoidCallback onPressed,
- Widget? child,
- double radius = BouncingWidgetSize.TINY,
- double widthFactor = 1.3,
- bool isScrollable = false,
- Color backgroundColor = Colors.transparent,
- ImageProvider<
Object> ? backgroundImage, - double scaleFactor = 1,
- Duration duration = const Duration(milliseconds: 200),
- bool canReverse = false,
- Key? key,
Implementation
const BounceCircleAvatar({
required this.onPressed,
this.child,
this.radius = BouncingWidgetSize.TINY,
this.widthFactor = 1.3,
this.isScrollable = false,
this.backgroundColor = Colors.transparent,
this.backgroundImage,
this.scaleFactor = 1,
this.duration = const Duration(milliseconds: 200),
this.canReverse = false,
Key? key,
}) : super(key: key);