如何使非常数范围成为整数

huangapple go评论97阅读模式
英文:

How do I make non-constant range an integer

问题

Picker("尺寸", selection: $size) {

    ForEach(sizeOption.indices) { index in
        Text(sizeOption[index])
    }
}
英文:
Picker("Size",selection: $size) {

    ForEach(sizeOption.indices) { index in
        Text(sizeOption[index])
    }
}

答案1

得分: 2

添加 id 参数,值为 \.self

Picker("尺寸", selection: $size) {
    ForEach(sizeOption.indices, id: \.self) { index in
        Text(sizeOption[index])
    }
}
英文:

Add the id parameter with the value \.self

Picker("Size",selection: $size) {
    ForEach(sizeOption.indices, id: \.self) { index in
        Text(sizeOption[index])
    }
}

huangapple
  • 本文由 发表于 2023年3月15日 18:08:03
  • 转载请务必保留本文链接:https://go.coder-hub.com/75743225.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定