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
版权声明:本文标题:swiftui - Dynamic sort giving Ambiguous use of 'toolbar(content:)' - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743909322a2560098.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论