You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Header with refresh control (from PullingControl module)
210
210
RefreshControl(
211
211
threshold: 60,
212
212
action: {
@@ -502,12 +502,64 @@ StickyHeader(sizing: .fixed(250)) { context in
502
502
}
503
503
```
504
504
505
-
### 6. RefreshControl
505
+
### 6. PullingControl
506
506
507
-
Custom pull-to-refresh control for ScrollView with customizable appearance.
507
+
A two-layered pull gesture detection system for ScrollView. Provides both low-level pull detection (`PullingControl`) and high-level pull-to-refresh functionality (`RefreshControl`).
508
+
509
+
#### Low-Level: PullingControl
510
+
511
+
Detects pull gestures and provides pull distance, progress, and threshold state. Use this when you need custom pull-based interactions beyond refresh.
0 commit comments