ShimmerMultiLine constructor

const ShimmerMultiLine({
  1. Key? key,
  2. BorderRadiusGeometry? borderRadius,
  3. Color? baseColor,
  4. Color? highlightColor,
  5. double width = double.infinity,
  6. double? height,
  7. double lineSpace = 8,
  8. int lineCount = 3,
  9. EdgeInsetsGeometry padding = const EdgeInsets.all(0),
  10. BoxShape shape = BoxShape.rectangle,
})

Create a ShimmerBox effect that spans multiple lines.

複数行に渡るShimmerBoxエフェクトを作成します。

Implementation

const ShimmerMultiLine({
  super.key,
  this.borderRadius,
  this.baseColor,
  this.highlightColor,
  this.width = double.infinity,
  this.height,
  this.lineSpace = 8,
  this.lineCount = 3,
  this.padding = const EdgeInsets.all(0),
  this.shape = BoxShape.rectangle,
});