ScrollAreaProps constructor
const
ScrollAreaProps({
- required Widget child,
- String? height,
- String? width,
- String? maxHeight,
- String? maxWidth,
- ScrollDirectionVariant direction = ScrollDirectionVariant.vertical,
- ScrollbarVisibilityVariant scrollbar = ScrollbarVisibilityVariant.hover,
- ScrollbarStyleVariant scrollbarStyle = ScrollbarStyleVariant.thin,
- String? trackColor,
- String? thumbColor,
- String scrollbarSize = '8px',
- bool showScrollShadows = false,
- String? padding,
- String? className,
- int instanceId = 0,
Implementation
const ScrollAreaProps({
required this.child,
this.height,
this.width,
this.maxHeight,
this.maxWidth,
this.direction = ScrollDirectionVariant.vertical,
this.scrollbar = ScrollbarVisibilityVariant.hover,
this.scrollbarStyle = ScrollbarStyleVariant.thin,
this.trackColor,
this.thumbColor,
this.scrollbarSize = '8px',
this.showScrollShadows = false,
this.padding,
this.className,
this.instanceId = 0,
});