gpt4 book ai didi

SwiftUI:如何在父 View 的中心叠加图像?

转载 作者:行者123 更新时间:2023-12-04 15:13:43 24 4
gpt4 key购买 nike

我有一张图片要放在现有 View 上。它左对齐/领先,但我希望它居中在屏幕上(或鲑鱼色区域)。

should be centered in the salmon colored area

这是我的代码:

struct LeaderBoard: View {
@State var shouldDisplayOverLay = true
var body: some View {
ZStack {
VStack(alignment: .center) {
Text("Daily Dashboard")
.font(.subheadline)
Color.darkSalmon
Spacer()
HStack {
Text("Exercise")
Text("Sleep (in hours):")
Text("Weight") // red if lower more than a pound, yellow if less than pound, green if same or higher
}
.font(.caption)
Spacer()
}
Image("Leader-1024")
.resizable()
.scaledToFit()
.modifier(InsetViewModifier())
}
}
}


struct InsetViewModifier: ViewModifier {
func body(content: Content) -> some View {
GeometryReader { proxy in
content
.frame(width: proxy.size.width * 0.8, height: proxy.size.height * 0.8, alignment: .center)
}
}
}

最佳答案

GeometyReader 没有自己的对齐方式,所以解决方案可以是在修改器中嵌入一些堆栈(因为它们都默认具有 .center 对齐方式):

struct InsetViewModifier: ViewModifier {
func body(content: Content) -> some View {
GeometryReader { proxy in
VStack {
content
.frame(width: proxy.size.width * 0.8, height: proxy.size.height * 0.8, alignment: .center)
}
.frame(maxWidth: .infinity, maxHeight: .infinity)
}
}
}

和一些复制的演示

demo

关于SwiftUI:如何在父 View 的中心叠加图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64730123/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com