因此,基本上我创建了一个 HeaderView,它由一个占用整个屏幕空间的 ZStack 组成,因为它添加了纯黑色背景和位于黑色背景上的整个标题(因此需要 Zstack)。一切看起来都是我想要的,但是我很难将我的 HeaderView 放在 ZStack 的顶部,以便为我需要在标题下方添加的所有其他视图腾出空间。
我目前的代码是:
struct HomeView: View {
var body: some View {
ZStack() {
Color.black.edgesIgnoringSafeArea(.all)
HeaderView()
}
}
}
struct HeaderView: View {
let name = "John"
let lastName = "Gonzalez"
let points = Int.random(in: 4000..<6000)
var body: some View {
HStack {
VStack(alignment: .leading, spacing: 5) {
Text(self.name)
.font(.title)
.fontWeight(.bold)
.foregroundColor(.white)
Text(self.lastName)
.font(.title)
.fontWeight(.bold)
.foregroundColor(.white)
HStack {
Text("Premium")
.frame(width: 90, height: 30)
.background(Color.green)
.cornerRadius(7)
.foregroundColor(.white)
Image(systemName: "bolt.fill")
.foregroundColor(.yellow)
.padding(.leading, 10)
Text(String(self.points))
.foregroundColor(.white)
Text("Points")
.foregroundColor(.white)
.font(.callout)
.fontWeight(.bold)
}
.padding(.top, 13)
}
.padding(.horizontal, 20)
Spacer()
Image("profilePicture")
.resizable()
.scaledToFit()
.frame(width: 100, height:100)
.clipShape(Capsule())
.shadow(radius: 10)
.padding(.trailing, 1)
}
}
}
该视图目前看起来像这样,尽管我真的希望它像每个标题一样位于顶部。
有小费吗?例如,我尝试在调用 HeaderView() 之后添加一个 Spacer(),以便将 Header 推到 ZStack 的顶部,但这实际上什么也没做。任何帮助表示赞赏!