AdaptiveRefreshableScrollView constructor

const AdaptiveRefreshableScrollView({
  1. Key? key,
  2. ScrollController? controller,
  3. required List<Widget> slivers,
  4. Future<void> onRefresh()?,
  5. Widget? header,
  6. ScrollPhysics? physics,
  7. Clip clipBehavior = Clip.hardEdge,
  8. bool reverse = false,
  9. ScrollBehavior? scrollBehavior,
  10. bool shrinkWrap = false,
  11. Color? color,
  12. Color? refreshControlBackgroundColor,
  13. Color? refreshIndicatorBackgroundColor,
  14. EdgeInsets padding = EdgeInsets.zero,
})

Implementation

const AdaptiveRefreshableScrollView({
  super.key,
  this.controller,
  required this.slivers,
  this.onRefresh,
  this.header,
  this.physics,
  this.clipBehavior = Clip.hardEdge,
  this.reverse = false,
  this.scrollBehavior,
  this.shrinkWrap = false,
  this.color,
  this.refreshControlBackgroundColor,
  this.refreshIndicatorBackgroundColor,
  this.padding = EdgeInsets.zero,
});