Try this simple app: ```swift import SwiftUI struct ContentView: View { @State private var textInput = "" @State private var isToggleOn = false var body: some View { VStack { TextField("Enter text", text: $textInput) Toggle(isOn: $isToggleOn) {} .toggleStyle(.switch) Button("Button") {} } } } ``` If you have keyboard navigation setting  enabled, then you can easily navigate through elements by pressing "tab" key. But if you add ```swift KeyboardShortcuts.Recorder(for: .shortcut) ``` before ```swift Button("Button") {} ``` then the `Button` won't be reachable by the tab key.