BaseGalleryViewPage constructor

const BaseGalleryViewPage({
  1. Key? key,
  2. required List<String> images,
  3. int currentIndex = 0,
  4. SystemUiOverlayStyle? systemOverlayStyle,
  5. Widget? leading,
  6. Color? tintColor,
  7. Color? backgroundColor,
  8. bool enableRotation = false,
})

Implementation

const BaseGalleryViewPage(
    {super.key,
    required this.images,
    this.currentIndex = 0,
    this.systemOverlayStyle,
    this.leading,
    this.tintColor,
    this.backgroundColor,
    this.enableRotation = false});