NiceScrollView constructor

const NiceScrollView({
  1. Key? key,
  2. required Widget child,
  3. bool showScrollToTop = true,
  4. double scrollToTopThreshold = 300,
  5. EdgeInsets? padding,
})

Implementation

const NiceScrollView({
  super.key,
  required this.child,
  this.showScrollToTop = true,
  this.scrollToTopThreshold = 300,
  this.padding,
});