I want to calculate how much I can scroll from the height of the entire ScrollView to the bottom of the ScrollView, but I can't get the height of the entire ScrollView. If there is any way to do this, please let me know.
scrollView.contentSize.height scrollView.frame.height
The top two are the values you want to get
var body: some View {
ScrollView {
ForEach(0..<100, id: \.self) { number in
Text("\(number)")
}
}
}