NavigableCarousel constructor

const NavigableCarousel({
  1. Key? key,
  2. required List<Component> children,
  3. double gap = 16,
  4. bool showArrows = true,
  5. bool showIndicators = true,
  6. int visibleItems = 1,
  7. String? height,
})

Implementation

const NavigableCarousel({
  super.key,
  required this.children,
  this.gap = 16,
  this.showArrows = true,
  this.showIndicators = true,
  this.visibleItems = 1,
  this.height,
});