LoadingBouncingGrid.circle constructor

const LoadingBouncingGrid.circle({
  1. Key? key,
  2. AnimationController? controller,
  3. Color backgroundColor = Colors.blueGrey,
  4. Color borderColor = Colors.transparent,
  5. double size = 50.0,
  6. double? borderSize,
  7. bool inverted = false,
  8. IndexedWidgetBuilder? itemBuilder,
  9. Duration duration = const Duration(milliseconds: 1500),
})

Creates the LoadingBouncingGrid animation with a circle shape

Implementation

const LoadingBouncingGrid.circle({
  Key? key,
  this.controller,
  this.backgroundColor = Colors.blueGrey,
  this.borderColor = Colors.transparent,
  this.size = 50.0,
  this.borderSize,
  this.inverted = false,
  this.itemBuilder,
  this.duration = const Duration(milliseconds: 1500),
})  : _shape = BoxShape.circle,
      super(key: key);