GFItemsCarousel constructor
const
GFItemsCarousel({
- Key? key,
- required int rowCount,
- required List<
Widget> children, - GFItemsCarouselSlideStartCallback? onSlideStart,
- GFItemsCarouselSlideCallback? onSlide,
- GFItemsCarouselSlideEndCallback? onSlideEnd,
- 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);