我想根据视图的大小计算视图内部形状的线宽。通过查看StackOverflow上的各种帖子,我认为解决方案是使用这样的GeometryReader:
struct MyView: View {
var body: some View {
GeometryReader { geometry in
// Here goes your view content,
// and you can use the geometry variable
// which contains geometry.size of the parent
// You also have function to get the bounds
// of the parent: geometry.frame(in: .global)
}
}
}
我的问题是,如何在GeometryReader构造内定义用于视图的变量?我试图在“ GeometryReader {geometry in”行之后直接放置一个var语句,但这会导致编译器错误。
答案 0 :(得分:3)
这似乎是与功能生成器相关的错误(自Beta 3开始),我建议对此进行归档。
我一直在使用的解决方法是在单独的方法中使用GeometryProxy
,并显式返回。
var body: some View {
GeometryReader { proxy in
self.useProxy(proxy)
}
}
func useProxy(_ proxy: GeometryProxy) -> some View {
var width = proxy.size.width
return VStack {
// use width in here
}
}