AndrossySlider constructor

const AndrossySlider({
  1. Key? key,
  2. IndexedWidgetBuilder? counterBuilder,
  3. PositionType counterPosition = PositionType.topRight,
  4. bool showCounter = true,
  5. double frameRatio = 1,
  6. int index = 0,
  7. ValueChanged<int>? onChanged,
  8. required int itemCount,
  9. required IndexedWidgetBuilder builder,
})

Implementation

const AndrossySlider({
  super.key,
  this.counterBuilder,
  this.counterPosition = PositionType.topRight,
  this.showCounter = true,
  this.frameRatio = 1,
  this.index = 0,
  this.onChanged,
  required this.itemCount,
  required this.builder,
});