ScrollPickerDecoration constructor

const ScrollPickerDecoration({
  1. Widget scrollItemBuilder(
    1. BuildContext context,
    2. int index,
    3. dynamic value
    )?,
  2. Widget? highlightWidget,
  3. TextStyle? scrollItemTextStyle,
  4. int numberOfVisibleItems = 5,
  5. double itemHeight = 30,
  6. double diameterRatio = 2.0,
  7. double perspective = 0.002,
  8. double overAndUnderCenterOpacity = 1.0,
  9. double offAxisFraction = 0.0,
  10. bool useMagnifier = false,
  11. double magnification = 1.0,
  12. double squeeze = 1.0,
  13. bool renderChildrenOutsideViewport = false,
})

Implementation

const ScrollPickerDecoration({
  this.scrollItemBuilder,
  this.highlightWidget,
  this.scrollItemTextStyle,
  this.numberOfVisibleItems = 5,
  this.itemHeight = 30,
  this.diameterRatio = 2.0,
  this.perspective = 0.002,
  this.overAndUnderCenterOpacity = 1.0,
  this.offAxisFraction = 0.0,
  this.useMagnifier = false,
  this.magnification = 1.0,
  this.squeeze = 1.0,
  this.renderChildrenOutsideViewport = false,
});