Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created June 28, 2020 16:25
Show Gist options
  • Save azamsharp/e337c353b18b3dd21ae80cbdadee4a20 to your computer and use it in GitHub Desktop.
Save azamsharp/e337c353b18b3dd21ae80cbdadee4a20 to your computer and use it in GitHub Desktop.
NavigationView {
ScrollView {
LazyVGrid(columns: columns, spacing: 10, pinnedViews: [.sectionHeaders]) {
ForEach(1..<11) { index in
Section(header: headerView(index)) {
ForEach(0..<20) { _ in
Rectangle()
.fill(Color.red)
.aspectRatio(contentMode: .fit)
}
}
}
}.padding()
}
.navigationTitle("LazyVGrid")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment