GFItemsCarousel constructor

const GFItemsCarousel({
  1. Key? key,
  2. required int rowCount,
  3. required List<Widget> children,
  4. GFItemsCarouselSlideStartCallback? onSlideStart,
  5. GFItemsCarouselSlideCallback? onSlide,
  6. GFItemsCarouselSlideEndCallback? onSlideEnd,
  7. double itemHeight = 200,
})

Creates slide show of Images and Widget with animation for sliding. Shows multiple items on one slide, items number depends on rowCount.

Implementation

const GFItemsCarousel({
  Key? key,
  required this.rowCount,
  required this.children,
  this.onSlideStart,
  this.onSlide,
  this.onSlideEnd,
  this.itemHeight = 200,
}) : super(key: key);