NiceImageGallery constructor

const NiceImageGallery({
  1. Key? key,
  2. required List<NiceGalleryImage> images,
  3. int crossAxisCount = 3,
  4. double spacing = 8,
  5. double aspectRatio = 1,
  6. ValueChanged<int>? onImageTap,
  7. BorderRadius? borderRadius,
  8. bool showOverlay = false,
})

Implementation

const NiceImageGallery({
  super.key,
  required this.images,
  this.crossAxisCount = 3,
  this.spacing = 8,
  this.aspectRatio = 1,
  this.onImageTap,
  this.borderRadius,
  this.showOverlay = false,
});