ArcaneScrollArea.vertical constructor

const ArcaneScrollArea.vertical({
  1. required Component child,
  2. required String height,
  3. String? maxHeight,
  4. ScrollbarVisibility scrollbar = ScrollbarVisibility.hover,
  5. ScrollbarStyle scrollbarStyle = ScrollbarStyle.thin,
  6. String? thumbColor,
  7. String? trackColor,
  8. bool showScrollShadows = false,
  9. String? padding,
  10. String? className,
  11. Key? key,
})

Implementation

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