GalleryPreviewer constructor

const GalleryPreviewer({
  1. required bool collapsed,
  2. required ValueChanged<List<Uint8List?>> onTap,
  3. ScrollController? controller,
  4. Duration duration = Duration.zero,
  5. double height = 400,
  6. bool multiSelect = true,
  7. Size? maxSize,
  8. Widget? loadingWidget,
})

Implementation

const GalleryPreviewer({
  required this.collapsed,
  required this.onTap,
  this.controller,
  // this.physics,
  this.duration = Duration.zero,
  this.height = 400,
  this.multiSelect = true,
  this.maxSize,
  this.loadingWidget,
});