Skip to content

Instantly share code, notes, and snippets.

@jacobsapps
Created April 27, 2025 12:01
Show Gist options
  • Save jacobsapps/49539ebeecb3c9452f38aa865a2e43e8 to your computer and use it in GitHub Desktop.
Save jacobsapps/49539ebeecb3c9452f38aa865a2e43e8 to your computer and use it in GitHub Desktop.
ScrollView {
LazyVStack {
ForEach(0..<1_000) { _ in
PostCellView()
.frame(height: Double.random(in: 150...300))
.clipped()
}
}
.scrollIndicators(.visible)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment