TrackableScrollView
TrackableScrollView copied to clipboard
A customizable ScrollView that supports to get the content offset.
TrackableScrollView
A customizable ScrollView that supports to get the content offset.
Usage
TrackableScrollView(contentOffset: $contentOffSet) {
ForEach(0..<100) { index in
Text("Item \(index)")
.padding()
}
}