ArcaneScrollArea constructor

const ArcaneScrollArea({
  1. required Widget child,
  2. String? height,
  3. String? width,
  4. String? maxHeight,
  5. String? maxWidth,
  6. ScrollDirection direction = ScrollDirection.vertical,
  7. ScrollbarVisibility scrollbar = ScrollbarVisibility.hover,
  8. ScrollbarStyle scrollbarStyle = ScrollbarStyle.thin,
  9. String? trackColor,
  10. String? thumbColor,
  11. String scrollbarSize = '8px',
  12. bool showScrollShadows = false,
  13. String? padding,
  14. String? className,
  15. Key? key,
})

Implementation

const ArcaneScrollArea({
  required this.child,
  this.height,
  this.width,
  this.maxHeight,
  this.maxWidth,
  this.direction = ScrollDirection.vertical,
  this.scrollbar = ScrollbarVisibility.hover,
  this.scrollbarStyle = ScrollbarStyle.thin,
  this.trackColor,
  this.thumbColor,
  this.scrollbarSize = '8px',
  this.showScrollShadows = false,
  this.padding,
  this.className,
  super.key,
});