随着 Swiftui 3 Apple 添加了可刷新的修饰符。我可以将它与列表一起使用。但如果我有滚动视图,它就不起作用。有任何想法吗?
ScrollView(.vertical) {
LazyVGrid(columns: columns, spacing: gridSpacing) {
ForEach($products, id: \.self) { product in
CardView()
}
}
}.refreshable {
}