RefreshScrollView constructor

const RefreshScrollView({
  1. Key? key,
  2. RefreshConfig? refreshConfig,
  3. EdgeInsetsGeometry? padding,
  4. List<Widget> slivers = const <Widget>[],
  5. bool noScrollBehavior = false,
  6. bool shrinkWrap = false,
  7. bool reverse = false,
  8. Axis scrollDirection = Axis.vertical,
  9. double anchor = 0.0,
  10. double? cacheExtent,
  11. ScrollController? controller,
  12. bool? primary,
  13. ScrollPhysics? physics,
  14. Key? center,
  15. int? semanticChildCount,
  16. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  17. ScrollViewKeyboardDismissBehavior keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.manual,
  18. Clip clipBehavior = Clip.hardEdge,
  19. ScrollBehavior? scrollBehavior,
  20. String? restorationId,
})

Implementation

const RefreshScrollView(
    {super.key,
    this.refreshConfig,
    this.padding,
    this.slivers = const <Widget>[],
    this.noScrollBehavior = false,
    this.shrinkWrap = false,
    this.reverse = false,
    this.scrollDirection = Axis.vertical,
    this.anchor = 0.0,
    this.cacheExtent,
    this.controller,
    this.primary,
    this.physics,
    this.center,
    this.semanticChildCount,
    this.dragStartBehavior = DragStartBehavior.start,
    this.keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.manual,
    this.clipBehavior = Clip.hardEdge,
    this.scrollBehavior,
    this.restorationId});