Skip to content

Instantly share code, notes, and snippets.

@iosdevie
Created May 29, 2021 20:53
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 iosdevie/aa844020f37049ecc22015ddbe5ba792 to your computer and use it in GitHub Desktop.
Save iosdevie/aa844020f37049ecc22015ddbe5ba792 to your computer and use it in GitHub Desktop.
struct ContentView: View {
var body: some View {
GeometryReader{
geometry in
NavigationView{
CustomScrollView(width: geometry.size.width, height: geometry.size.height)
.navigationBarTitle(Text("SwiftUI Pull To Refresh"))
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment