我一直在尝试在 SwiftUI 中创建一个表单,但由于使用“Form()”的限制,我选择使用包含按钮的 ForEach 循环创建一个 ScrollView。当我运行该项目并尝试单击按钮时,它会单击不正确的按钮,除非我滚动视图。我是 SwiftUI 的新手,我无法弄清楚。
我尝试制作不同大小的 ScrollView,但似乎没有关系
struct DropDown: View {
var datos: [String]
var categoria: String
@State var titulo: String = "Seleccione"
@State var expand = false
var body: some View {
VStack {
Text(categoria).fontWeight(.heavy).foregroundColor(.white)
HStack {
Text(titulo).fontWeight(.light).foregroundColor(.white)
Image(systemName: expand ? "chevron.up" : "chevron.down").resizable().frame(width: 10, height: 6).foregroundColor(.white)
}.onTapGesture {
self.expand.toggle()
}
if expand {
ScrollView(showsIndicators: true) {
ForEach(0..<self.datos.count){ nombre in
Button(action: {
print(self.datos[nombre])
self.titulo = self.datos[nombre]
self.expand.toggle()
diccionarioDatos[self.categoria] = self.titulo
print(diccionarioDatos)
}) {
Text(self.datos[nombre]).foregroundColor(.white)
}
} …Run Code Online (Sandbox Code Playgroud)