ScrollBarOptions constructor

const ScrollBarOptions({
  1. bool scrollable = false,
  2. bool visible = true,
  3. bool showDeactivated = true,
  4. EdgeInsets padding = const EdgeInsets.symmetric(vertical: 5, horizontal: 0),
  5. EdgeInsets margin = const EdgeInsets.only(right: 5, left: 5),
  6. double width = 25,
  7. double? heightFactor,
  8. Color? background,
  9. ScrollBarAlignment alignment = ScrollBarAlignment.start,
  10. BorderRadiusGeometry? borderRadius,
  11. bool jumpToSymbolsWithNoEntries = false,
  12. SymbolStateBuilder? symbolBuilder,
  13. SymbolStateBuilder? specialSymbolBuilder,
})

Implementation

const ScrollBarOptions({
  this.scrollable = false,
  this.visible = true,
  this.showDeactivated = true,
  this.padding = const EdgeInsets.symmetric(vertical: 5, horizontal: 0),
  this.margin = const EdgeInsets.only(right: 5, left: 5),
  this.width = 25,
  this.heightFactor,
  this.background,
  this.alignment = ScrollBarAlignment.start,
  this.borderRadius,
  this.jumpToSymbolsWithNoEntries = false,
  this.symbolBuilder,
  this.specialSymbolBuilder,
});