BaseCycleView constructor

const BaseCycleView({
  1. Key? key,
  2. required List<Widget> items,
  3. double? width,
  4. double? height,
  5. Axis scrollDirection = Axis.horizontal,
  6. ScrollPhysics? physics,
  7. int? playDelay,
  8. bool showPagination = true,
  9. ValueChanged<int>? onTap,
  10. ValueChanged<int>? onIndexChanged,
  11. BaseSwiperPlugin? pagination,
})

Implementation

const BaseCycleView(
    {super.key,
    required this.items,
    this.width,
    this.height,
    this.scrollDirection = Axis.horizontal,
    this.physics,
    this.playDelay,
    this.showPagination = true,
    this.onTap,
    this.onIndexChanged,
    this.pagination});