ShapeContainer constructor
const
ShapeContainer({
- required Animation<
double> animation, - required Size containerSize,
- required Size textSize,
- required EdgeInsetsGeometry padding,
- required Color backgroundColor,
- required List<
Color> ? gradientColor, - required Color foregroundColor,
- required IconData icon,
- required double iconSize,
- required double borderRadius,
Implementation
const ShapeContainer({
required this.animation,
required this.containerSize,
required this.textSize,
required this.padding,
required this.backgroundColor,
required this.gradientColor,
required this.foregroundColor,
required this.icon,
required this.iconSize,
required this.borderRadius,
}) : super(listenable: animation);