PageViewSliderRF constructor

const PageViewSliderRF({
  1. dynamic modelList,
  2. Function? builder,
  3. double height = 150,
  4. WidgetStyleRF? style,
  5. Widget? placeholder,
  6. dynamic placeholderLines = 6,
  7. bool showIndicator = true,
  8. Color activeDotColor = Colors.red,
  9. Color dotColor = Colors.grey,
})

Implementation

const PageViewSliderRF({
  this.modelList,
  this.builder,
  this.height = 150,
  this.style,
  this.placeholder,
  this.placeholderLines = 6,
  this.showIndicator = true,
  this.activeDotColor = Colors.red,
  this.dotColor = Colors.grey,
});