ScrollFadeRegion constructor

const ScrollFadeRegion({
  1. Key? key,
  2. required double maxHeight,
  3. required Color backgroundColor,
  4. required Widget child,
  5. ScrollController? controller,
  6. double fadeExtent = 22,
  7. bool showScrollbar = false,
})

Implementation

const ScrollFadeRegion({
  super.key,
  required this.maxHeight,
  required this.backgroundColor,
  required this.child,
  this.controller,
  this.fadeExtent = 22,
  this.showScrollbar = false,
});