-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
import SwiftUI
struct ContentView: View {
@State private var shortcut: String = "a"
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundColor(.accentColor)
Text("Hello, world!")
Button("press me") {
print("Pressed")
}
.keyboardShortcut(KeyEquivalent(shortcut.first ?? "a")) // this
TextField("Shortcut", text: $shortcut)
}
}
}Metadata
Metadata
Assignees
Labels
No labels