FXGalleryPage constructor

const FXGalleryPage({
  1. Key? key,
  2. required List<FXGalleryImage> itemList,
  3. Color backgroundColor = Colors.transparent,
  4. Color textColor = Colors.white,
  5. Color indicatorActiveColor = Colors.white,
  6. Color indicatorInactiveColor = Colors.white54,
  7. Color descriptionBackgroundColor = Colors.black26,
  8. Widget errorBuilder(
    1. BuildContext,
    2. Object,
    3. StackTrace?
    )?,
})

Implementation

const FXGalleryPage({
  Key? key,
  required this.itemList,
  this.backgroundColor = Colors.transparent,
  this.textColor = Colors.white,
  this.indicatorActiveColor = Colors.white,
  this.indicatorInactiveColor = Colors.white54,
  this.descriptionBackgroundColor = Colors.black26,
  this.errorBuilder,
}) : super(key: key);