FolderViewScrollbarTheme constructor
const
FolderViewScrollbarTheme({
- required Color thumbColor,
- required Color trackColor,
- double thickness = 12.0,
- double radius = 4.0,
- bool thumbVisibility = true,
- double hoverOpacity = 0.8,
- double nonHoverOpacity = 0.0,
- Duration hoverAnimationDuration = const Duration(milliseconds: 200),
- double trackWidth = 16.0,
- double trackRadius = 8.0,
- bool trackVisibility = false,
Creates a FolderViewScrollbarTheme with the given properties
Implementation
const FolderViewScrollbarTheme({
required this.thumbColor,
required this.trackColor,
this.thickness = 12.0,
this.radius = 4.0,
this.thumbVisibility = true,
this.hoverOpacity = 0.8,
this.nonHoverOpacity = 0.0,
this.hoverAnimationDuration = const Duration(milliseconds: 200),
this.trackWidth = 16.0,
this.trackRadius = 8.0,
this.trackVisibility = false,
});