LoadingOverlayStyle constructor

const LoadingOverlayStyle({
  1. TextStyle? hintStyle,
  2. double space = 14,
  3. Color? loadingColor,
  4. Color? backgroundColor,
  5. int hintMaxLines = 1,
  6. double loadingSize = 48,
  7. int loadingIndex = -1,
  8. BorderRadius borderRadius = const BorderRadius.all(Radius.circular(14)),
  9. BoxConstraints constraints = const BoxConstraints.tightFor(width: 80, height: 80),
})

Implementation

const LoadingOverlayStyle({
  this.hintStyle,
  this.space = 14,
  this.loadingColor,
  this.backgroundColor,
  this.hintMaxLines = 1,
  this.loadingSize = 48,
  this.loadingIndex = -1,
  this.borderRadius = const BorderRadius.all(Radius.circular(14)),
  this.constraints = const BoxConstraints.tightFor(width: 80, height: 80),
});