Skip to content
This repository was archived by the owner on Dec 27, 2020. It is now read-only.

Commit 0f343aa

Browse files
committed
macos builder view
1 parent 01b62b8 commit 0f343aa

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Examples/GridExamples macOS/ContentView.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ struct ContentView: View {
2121
Text("Performance")
2222
}
2323
.tag(2)
24+
BuilderLayoutView()
25+
.tabItem {
26+
Text("Builder")
27+
}
28+
.tag(2)
2429
}
2530
.frame(minWidth: 300, maxWidth: .infinity, maxHeight: .infinity)
2631
.padding()

Examples/GridExamples/PerformanceLayoutView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Grid
33

44
struct PerformanceLayoutView: View {
55
var body: some View {
6-
Grid(0...100, minimumItemWidth: 20, spacing: 1) { number in
6+
Grid(0...5000, minimumItemWidth: 20, spacing: 1) { number in
77
Rectangle()
88
.foregroundColor(.random)
99
.frame(height: 20)

0 commit comments

Comments
 (0)