Created
June 28, 2020 16:25
-
-
Save azamsharp/e337c353b18b3dd21ae80cbdadee4a20 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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