如何解决SwiftUI:获取 ScrollView 内内容的高度以更新框架
我需要根据其中的内容高度更新我的 ScrollView 的高度。我在下面有一个工作轮播:
struct PostsPaging<Content>: View where Content: View {
@Binding var index: Int
let maxIndex: Int
let content: () -> Content
@State private var offset = CGFloat.zero
init(index: Binding<Int>,maxIndex: Int,@viewbuilder content: @escaping () -> Content) {
self._index = index
self.maxIndex = maxIndex
self.content = content
}
var body: some View {
ZStack(alignment: .bottomTrailing) {
GeometryReader { geometry in
ScrollView (.horizontal,showsIndicators: false){
LazyHStack(spacing: 0) {
self.content()
.fixedSize()
.frame(width: geometry.size.width)
.clipped()
}
}
.content.offset(x: self.offset(in: geometry),y: 0)
.frame(width: geometry.size.width,alignment: .leading)
.animation(.spring())
}.clipped()
}
}
}
这就是它的名字:
PostsPaging(index: self.$index.animation(),maxIndex: self.posts.count - 1) {
ForEach(self.posts,id: \.self) { post in
SmallPostCard(...)
}
}
这似乎只是一遍又一遍地返回相同的值:
.background(
GeometryReader { proxy in
Color.clear.onAppear { print(proxy.size.height) }
})
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。