gpt4 book ai didi

SwiftUI 按高度百分比调整 VStack 的帧大小

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

我有一个卡片 View 。我给自己的尺寸。我知道这是错误的。我想调整大小并除以百分比,如 blue = 70% & red = 30%或类似的东西。但不知道怎么做。我是新来的 SwiftUI .下面是我的代码:

let screen = UIScreen.main.bounds

struct CardView: View {
var body: some View {
VStack {
VStack {
Text("Blue")
}
.frame(width: screen.width - 60, height: 180)
.background(Color.blue)
VStack {
Text("Red")
}
.frame(width: screen.width - 60, height: 100)
.background(Color.red)
}
.frame(width: screen.width - 60, height: 280)
}
}

而我的观点是:
enter image description here

最佳答案

这是基于GeometryReader的可计算的相对布局解决方案(注意:在这种情况下使用 NSScreen 是不合适的,因为它可能会在不同模型上引入预期的布局)
使用 Xcode 12b 测试
demo

struct CardView: View {
var body: some View {
GeometryReader { gp in
VStack {
VStack {
Text("Blue")
}
.frame(width: gp.size.width, height: gp.size.height * 0.7)
.background(Color.blue)
VStack {
Text("Red")
}
.frame(width: gp.size.width, height: gp.size.height * 0.3)
.background(Color.red)
}
}
.frame(height: 280).frame(maxWidth: .infinity)
.cornerRadius(24).padding(.horizontal, 30)
}
}

关于SwiftUI 按高度百分比调整 VStack 的帧大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62641243/

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