ImageShowPageView constructor

ImageShowPageView({
  1. required List<String> imageList,
  2. bool useCache = true,
  3. Widget? placeholder,
  4. Widget? iconError,
  5. int initIndex = 0,
  6. PageController? pageController,
  7. ImageShowType imageShowType = ImageShowType.ASSET,
  8. BoxFit boxFit = BoxFit.contain,
  9. ValueChanged<int>? onPageChanged,
})

Implementation

ImageShowPageView(
    {required this.imageList,
    this.useCache = true,
    this.placeholder,
    this.iconError,
    this.initIndex = 0,
    this.pageController,
    this.imageShowType = ImageShowType.ASSET,
    this.boxFit = BoxFit.contain,
    this.onPageChanged});