我尝试显示一些取决于整数的图像。
以'3'为例,我想要:
VStack {
Text(recette.name)
HStack() {
Text("Durée 20 min")
.font(.caption)
.fontWeight(.light)
Text("Notes")
.font(.caption)
.fontWeight(.light)
HStack(spacing: -1.0) {
for 0 in 0...recette.avis{
Image(systemName: "star.fill")
.padding(.leading)
.imageScale(.small)
.foregroundColor(.yellow)
}
}
}
}
但是代码不会在 for 中出现此错误。
包含控制流语句的闭包不能与函数构建器“ViewBuilder”一起使用
有人可以帮助我吗?
谢谢你。