Skip to content

Instantly share code, notes, and snippets.

@karthikAdaptavant
Created July 1, 2023 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karthikAdaptavant/84d6b4761909bb0abe428d3aacb2801a to your computer and use it in GitHub Desktop.
Save karthikAdaptavant/84d6b4761909bb0abe428d3aacb2801a to your computer and use it in GitHub Desktop.
struct ContentView: View {
var body: some View {
NavigationStack {
List(1..<100) { row in
Text("Row \(row)")
}
.refreshable {
print("Do your refresh work here")
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment