Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created June 28, 2020 15:36
Show Gist options
  • Save azamsharp/9794ee3364f1e311173ddb3d3bf4c0dc to your computer and use it in GitHub Desktop.
Save azamsharp/9794ee3364f1e311173ddb3d3bf4c0dc to your computer and use it in GitHub Desktop.
NavigationView {
ScrollView {
LazyVGrid(columns: columns) {
ForEach(1..<20) { _ in
Rectangle()
.fill(Color.red)
.aspectRatio(contentMode: .fit)
}
}}
.navigationTitle("LazyVGrid")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment