CLSkeleton.box constructor

const CLSkeleton.box({
  1. Key? key,
  2. required double width,
  3. required double height,
  4. double borderRadius = 6.0,
})

Shortcut per un blocco rettangolare (es. card, immagine).

Implementation

const CLSkeleton.box({
  super.key,
  required this.width,
  required this.height,
  this.borderRadius = 6.0,
});