WidgetCircularAnimator constructor

const WidgetCircularAnimator({
  1. required Widget child,
  2. Color innerColor = Colors.deepOrange,
  3. Color outerColor = Colors.deepOrange,
  4. Curve innerAnimation = Curves.linear,
  5. Curve outerAnimation = Curves.linear,
  6. double size = 200,
  7. double innerIconsSize = 3,
  8. double outerIconsSize = 3,
  9. int innerAnimationSeconds = 30,
  10. int outerAnimationSeconds = 30,
  11. bool reverse = true,
  12. bool singleRing = false,
})

Implementation

const WidgetCircularAnimator({
  required this.child,
  this.innerColor = Colors.deepOrange,
  this.outerColor = Colors.deepOrange,
  this.innerAnimation = Curves.linear,
  this.outerAnimation = Curves.linear,
  this.size = 200,
  this.innerIconsSize = 3,
  this.outerIconsSize = 3,
  this.innerAnimationSeconds = 30,
  this.outerAnimationSeconds = 30,
  this.reverse = true,
  this.singleRing = false,
});