gpt4 book ai didi

swiftui - 想要为延时(时间轴)重新创建以下 UI

转载 作者:行者123 更新时间:2023-12-04 03:43:19 27 4
gpt4 key购买 nike

我正在尝试重新创建以下内容:
我有以下代码,其中包含它的要点,但不是确切的外观和感觉,我仍在尝试掌握 Swift 的 UI 方面。

    VStack(spacing: 30) {

Group {

VStack {

HStack {

Image(systemName: "2.circle")

Text("Jan 2th, 2021 at 2:34 PM")

}

HStack {


Divider()

VStack {

Text("Title here")

Text("Notes here")

Text("Item not tracked on this day")

}

}.frame(height: 200)

}

}

}
能否再提供一种更好的镜像方式?

最佳答案

这是可能的解决方案。使用 Xcode 12.1/iOS 14.1 测试
demo

var body: some View {
VStack(spacing: 30) {

HStack(alignment: .top) {

VStack {
Image(systemName: "2.circle")
.resizable()
.frame(width: 40, height: 40)
HStack {
Divider()
}
}

VStack(alignment: .leading) {
Text("Jan 2th, 2021 at 2:34 PM").padding(.bottom)
Text("Title here")
.font(.title).bold()
Text("Notes here")
.font(.title3).bold().padding(.bottom)
Text("Item not tracked on this day")
}
}
.fixedSize(horizontal: false, vertical: true)
}
}

关于swiftui - 想要为延时(时间轴)重新创建以下 UI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65571864/

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