我有一组工具栏按钮,只有当设备是 iPhone(不是 iPad)时才应该显示。
以下代码因此错误而失败:
包含控制流语句的闭包不能与结果生成器“ToolbarContentBuilder”一起使用
我确实理解它为什么会失败,但我无法想出一个解决方案来满足我的需要。
import SwiftUI
struct ContentView: View {
var body: some View {
NavigationView {
List {
NavigationLink(
destination: Hello(),
label: {
Text("Hello")
})
}
}
}
}
struct Hello: View {
var body: some View {
Text("Hello World")
.toolbar() {
if UIDevice.current.userInterfaceIdiom == .phone {
ToolbarItem(placement: .navigationBarTrailing) {
Button(action: {
// do something
}, label: {
Text("Button1")
})
}
ToolbarItem(placement: .navigationBarTrailing) {
Button(action: {
// do something
}, label: {
Text("Button2")
})
}
}
ToolbarItem(placement: .navigationBarTrailing) {
Button(action: {
// do something
}, label: {
Text("Button3")
})
}
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
我很高兴创建一个单独的函数来实现它。我根本不知道该怎么做。