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