Scrollbars constructor
const
Scrollbars({
- Key? key,
- required Widget child,
- Widget corner = const SizedBox.shrink(),
- Widget verticalScrollbar = const DefaultScrollbar(),
- Widget horizontalScrollbar = const DefaultScrollbar(),
- bool verticalScrollbarPadsContent = false,
- bool horizontalScrollbarPadsContent = false,
- double verticalScrollbarThickness = 12.0,
- double horizontalScrollbarThickness = 12.0,
Implementation
const Scrollbars({
super.key,
required this.child,
this.corner = const SizedBox.shrink(),
this.verticalScrollbar = const DefaultScrollbar(),
this.horizontalScrollbar = const DefaultScrollbar(),
this.verticalScrollbarPadsContent = false,
this.horizontalScrollbarPadsContent = false,
this.verticalScrollbarThickness = 12.0,
this.horizontalScrollbarThickness = 12.0,
});