admin管理员组

文章数量:1352179

I have a dynamic sort or what some guys call a subview query that is giving problems compiling. I am getting an Ambiguous use of 'toolbar(content:) error at the opening bracket of the toolbar. The code will compile if I text out the call to EntrySortOrder(). This leads me to believe that the problem is with EntrySortOrder(). I have reduced the code to the bare minimum in the hopes of finding something that is giving the error, but I have had no luck.

struct EntryView: View {
    
    @State private var sortOrder = SortOrder.forward
    @Query var entries: [Entries]
    
    var body: some View {
        
        VStack {
            EntrySortOrder(sortOrder: sortOrder)
        }
        .toolbar {
            Button {
                sortOrder = sortOrder == .forward ? .reverse : .forward
            } label: {
                Image(systemName: "arrow.up.arrow.down.circle")
            }
            .symbolVariant(sortOrder == .forward ? .none : .fill)
        }
    }
}


@MainActor
struct EntrySortOrder {
    
    @Query private var entries: [Entries]
    
    init(sortOrder: SortOrder) {
        let sort = [SortDescriptor(\Entries.entryDate, order: sortOrder)]
        
        _entries = Query(sort: sort)
    }
    
    var body: some View {
        List {
            ForEach(travelEntries) { item in
                ShowRow(item: item)
            }
        }
    }
}

本文标签: swiftuiDynamic sort giving Ambiguous use of 39toolbar(content)39Stack Overflow