ALoader constructor

ALoader({
  1. Widget? child,
  2. ImageProvider<Object>? backgroundImage,
  3. String? text,
  4. TextStyle? textStyle,
  5. double? textSpacing,
  6. Animation<Color>? valueColor,
  7. Color? backgroundColor,
  8. double size = 100,
  9. EdgeInsets? padding,
  10. bool isTextCentered = true,
  11. Alignment? imageAlignment,
  12. EdgeInsets? textPadding,
})

Implementation

ALoader({
  this.child,
   this.backgroundImage,
   this.text,
   this.textStyle,
   this.textSpacing,
   this.valueColor,
   this.backgroundColor,
  this.size = 100,
   this.padding,
  this.isTextCentered = true,
   this.imageAlignment,
   this.textPadding,
});