SwiftUI - If inside ForEach loop

前端 未结 3 715
猫巷女王i
猫巷女王i 2021-01-18 15:30

I am building a List based on my elements in an array I fetched before.

I am fetching all the entities.. when the user makes a search in the search bar, I want to fi

3条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-18 16:18

    List(selection: $selectedDocument)
    {
        ForEach(self.documentItems, id: \.self) { document in
    
           self.checkSearchString(document: document) ?  extractedHstack() : emptyView()
    
        }
    

    Extract your hstack and use a trinary with an empty view. Let me know if this works I did this from memory no IDE on this computer.

提交回复
热议问题