PullToRefreshSettings constructor

PullToRefreshSettings({
  1. bool? allowWithNoScrollbar = false,
  2. AttributedString? attributedTitle,
  3. Color? backgroundColor,
  4. Color? color,
  5. int? distanceToTriggerSync,
  6. bool? enabled = true,
  7. PullToRefreshSize? size,
  8. int? slingshotDistance,
})

Officially Supported Platforms/Implementations:

  • Android WebView
  • iOS WKWebView
  • Windows WebView2

Implementation

PullToRefreshSettings({
  this.allowWithNoScrollbar = false,
  this.attributedTitle,
  this.backgroundColor,
  this.color,
  this.distanceToTriggerSync,
  this.enabled = true,
  this.size,
  this.slingshotDistance,
});