problèmes avec @binding entre les structures

Aug 17 2020

dans mon code j'ai:

struct Specialty {
    let type:String
    let color:Color
    let image:Image
}

// MARK: Search
struct Search: View {
   
    @State var show = false
    @State var txt = ""
    @State  var index = 1
    let specialtyList = [
        Specialty(type: "Cardiologia", color: Color.blue, image: Image("google1") ),
        Specialty(type: "Clínica Médica", color: Color.pink, image: Image("google1")),
        Specialty(type: "Dermatologia", color: Color("Color"), image: Image("google1")),
        Specialty(type: "Ginecologia e Obstetrícia", color: Color.pink, image: Image("google1")),
        Specialty(type: "Medicina do Trabalho", color: Color.red, image: Image("google1")),
        Specialty(type: "Oftalmologia", color: Color("Color"), image: Image("google1")),
        Specialty(type: "Ortopedia", color: Color.pink, image: Image("google1")),
        Specialty(type: "Otorrinolaringologia", color: Color.blue, image: Image("google1")),
        Specialty(type: "Pediatria", color: Color.red, image: Image("google1")),
        Specialty(type: "Psiquiatria", color: Color("Color"), image: Image("google1")),
        Specialty(type: "Radiologia", color: Color("Color"), image: Image("google1"))
    ]
}

ignorez les mêmes images google1, j'essaie simplement de faire fonctionner le code en premier.

Ensuite, dans la vue de la recherche, j'ai:

ForEach(specialtyList, id: \.type){ Specialty in
    NavigationLink (destination: SearchBar()){
        VStack(spacing: 18) {
            HStack{
                Text(Specialty.type).foregroundColor(.white)
                Specialty.image
                    .renderingMode(.original)
                    .resizable()
                    .frame(width: 35, height: 35)
            }
        }
    }
}

pour afficher les informations dans 'let SpecialtyList' sous forme de scrollView

Comme chaque monde affiché fonctionne comme un bouton, j'essaie que, lorsque je vais à la destination (qui est SearchBar () dans ce cas), je veux avoir des informations différentes en fonction du texte NavigationLink qui est pressé.

Comment pourrais-je le faire en utilisant l'ordre dans la liste 'SpecialtyList' et comment pourrait-on simplement imprimer, dans la destination, le même nom du texte NavigationLink qui a été pressé?

Réponses

Asperi Aug 17 2020 at 10:42

Je suppose que c'est ça

Remarque: essayez d'éviter le même nom pour le type (comme, Spécialité, en majuscule) et l'instance / valeur (comme, Spécialité, en minuscules), sinon cela pourrait confondre le compilateur et vous.

ForEach(specialtyList, id: \.type){ specialty in   // << named correctly
    NavigationLink (destination: SearchBar(item: specialty)){  //  << inject here
        VStack(spacing: 18) {
            HStack{
                Text(specialty.type).foregroundColor(.white)
                specialty.image
                    .renderingMode(.original)
                    .resizable()
                    .frame(width: 35, height: 35)
            }
        }
    }
}

et maintenant en vue

struct SearchBar: View {
   let item: Specialty

   var body: some View {
      Text(item.type)

      // .. other code
   }
}