CarouselGrid constructor

const CarouselGrid({
  1. Key? key,
  2. required double width,
  3. double height = 285,
  4. List<String>? listUrlImages,
  5. int gridCount = 2,
  6. double gridMainSpacing = 5.0,
  7. double gridCrossSpacing = 5.0,
  8. double gridMainExtent = 130.0,
  9. String? titleGallery,
  10. BoxFit fitCarouselList = BoxFit.cover,
  11. bool loopCarouselList = true,
  12. bool activeCarouselList = true,
  13. required Icon iconBack,
})

Implementation

const CarouselGrid({
  Key? key,
  required this.width,
  this.height = 285,
  this.listUrlImages,
  this.gridCount = 2,
  this.gridMainSpacing = 5.0,
  this.gridCrossSpacing = 5.0,
  this.gridMainExtent = 130.0,
  this.titleGallery,
  this.fitCarouselList = BoxFit.cover,
  this.loopCarouselList = true,
  this.activeCarouselList = true,
  required this.iconBack,
}) : super(key: key);