gpt4 book ai didi

swift - 在 SwiftUI 中显示行/分隔符 View

转载 作者:搜寻专家 更新时间:2023-11-01 05:49:19 32 4
gpt4 key购买 nike

我想在我的 SwiftUI 应用程序中显示分隔线。为此,我尝试创建一个具有固定框架和背景颜色/边框的空 View :

EmptyView()
.frame(width: 200, height: 2)
.background(Color.black) // or:
.border(Color.black, width: 2)

不幸的是,我看不到任何黑暗的景象。
有没有办法显示分隔符/行 View ?

最佳答案

使用 Divider :

A visual element that can be used to separate other content.

例子:

struct ContentView : View {
var body: some View {
VStack {
Text("Hello World")
Divider()
Text("Hello Another World")
}
}
}

输出: enter image description here

关于swift - 在 SwiftUI 中显示行/分隔符 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56619043/

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