iOS Swift - Lists and Data Display
Given this SwiftUI code snippet, what happens when the user pulls down the list?
List(items, id: \.self) { item in
Text(item)
}
.refreshable {
await fetchNewItems()
}