We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fd0dbc commit 1ee3640Copy full SHA for 1ee3640
1 file changed
MobCrew/MobCrew/Features/Settings/SettingsView.swift
@@ -14,6 +14,11 @@ struct SettingsView: View {
14
.tabItem {
15
Label("Breaks", systemImage: "cup.and.saucer")
16
}
17
+
18
+ ShortcutsSettingsTab()
19
+ .tabItem {
20
+ Label("Shortcuts", systemImage: "keyboard")
21
+ }
22
23
.frame(width: 450, height: 320)
24
@@ -57,6 +62,15 @@ private struct GeneralSettingsTab: View {
57
62
))
58
63
59
64
65
66
67
+ .formStyle(.grouped)
68
69
+}
70
71
+private struct ShortcutsSettingsTab: View {
72
+ var body: some View {
73
+ Form {
60
74
Section("Keyboard Shortcuts") {
61
75
ShortcutRow(shortcut: "⌘⇧L", description: "Toggle floating timer", note: "Global")
76
ShortcutRow(shortcut: "⌘↩", description: "Start/Pause timer")
0 commit comments