We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e5e7b1 commit 9d5f5aeCopy full SHA for 9d5f5ae
1 file changed
Sources/AudioKitUI/Controls/TapCountingDrumPadGrid.swift
@@ -63,7 +63,7 @@ public struct TapCountingDrumPadGrid: View {
63
let padHeight = gp.size.height / CGFloat(rows)
64
let columns = Array(repeating: GridItem(.fixed(padWidth)), count: cols)
65
LazyVGrid(columns: columns, spacing: 10) {
66
- ForEach(0..<count) { idx in
+ ForEach(0..<count, id: \.self) { idx in
67
ZStack {
68
if #available(iOS 15.0, *) {
69
RoundedRectangle(cornerRadius: padWidth / 10)
0 commit comments