LoadingFlipping.circle constructor
const
LoadingFlipping.circle({
- Key? key,
- AnimationController? controller,
- Color borderColor = Colors.blueGrey,
- Color backgroundColor = Colors.transparent,
- double size = 50.0,
- double? borderSize,
- IndexedWidgetBuilder? itemBuilder,
- Duration duration = const Duration(milliseconds: 1500),
Creates the LoadingFlipping animation with a circle shape
Implementation
const LoadingFlipping.circle({
Key? key,
this.controller,
this.borderColor = Colors.blueGrey,
this.backgroundColor = Colors.transparent,
this.size = 50.0,
this.borderSize,
this.itemBuilder,
this.duration = const Duration(milliseconds: 1500),
}) : _shape = BoxShape.circle,
super(key: key);