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