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 c075267 commit 3b1a7bfCopy full SHA for 3b1a7bf
Keyboard.playground/Contents.swift
@@ -5,9 +5,12 @@ import Tonic
5
6
struct ContentView: View {
7
var body: some View {
8
- Keyboard()
9
- Keyboard(layout: .isomorphic)
10
- Keyboard(pitchRange: Pitch(0) ... Pitch(60 + 37))
+ Keyboard().frame(minWidth: 400, minHeight: 200)
+ Spacer()
+ Keyboard(layout: .isomorphic(pitchRange: Pitch(36) ... Pitch(60), root: .C, scale: .major))
11
+ .frame(height: 150)
12
+ Keyboard(layout: .guitar())
13
14
}
15
16
0 commit comments