Swiftui tire pour actualiser
NavigationView {
List(1..<100) { row in
Text("Row \(row)")
}
.refreshable {
print("Do your refresh work here")
}
}
Frog Caller