Skip to content

Commit b324141

Browse files
authored
Merge pull request #13 from FlutterFlow/feature/keyboard-shortcuts
Add keyboard shortcuts section
2 parents ebde644 + 53f2206 commit b324141

File tree

2 files changed

+56
-1
lines changed

2 files changed

+56
-1
lines changed
26.7 KB
Binary file not shown.

docs/workspace/workspace.md

Lines changed: 56 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,59 @@ The workspace is organized into panels that work together to provide a complete
3232
- **Analysis Issues**: Quick overview of errors, warnings, and info messages in your code (coming from the code analyzer)
3333

3434

35-
This integrated workspace approach eliminates the need to switch between different tools and provides a cohesive environment for building, testing, and deploying Flutter applications.
35+
This integrated workspace approach eliminates the need to switch between different tools and provides a cohesive environment for building, testing, and deploying Flutter applications.
36+
37+
## Keyboard Shortcuts
38+
39+
Keyboard shortcuts help you work faster by reducing reliance on the mouse. You can quickly toggle panels, navigate the canvas, edit widgets, and perform common actions with simple key combinations.
40+
41+
To see a list of all keyboard shortcuts, click on your project name and select the **Keyboard Shortcuts** option.
42+
43+
![keyboard-shortcuts.avif](imgs/keyboard-shortcuts.avif)
44+
45+
Dreamflow currently supports the following keyboard shortcuts:
46+
47+
:::info
48+
49+
- `` represents the **Command** key on macOS. On Windows/Linux, use **Ctrl** instead.
50+
- `` represents the **Option** key on macOS (equivalent to **Alt** on Windows/Linux).
51+
52+
:::
53+
54+
#### Panel Layout
55+
56+
- **Reset all Panel widths to default**: `⌥ 0`
57+
- **Toggle Builder Panel visibility**: `⌥ 2`
58+
- **Toggle Details Panel visibility**: `⌥ 3`
59+
- **Toggle Right Agent Panel visibility**: `⌥ 4`
60+
- **Tab forward between Preview, Inspect, and Code**: `⌥ Tab`
61+
- **Tab backwards**: `⌥ Shift Tab`
62+
- **Toggle Split View**: `⌥ S`
63+
- **Toggle Inspect Mode**: `⌥ Shift I`
64+
65+
#### Editing
66+
67+
- **Undo**: `⌘ Z`
68+
- **Redo**: `⌘ Shift Z`
69+
- **Save File**: `⌘ S`
70+
- **Quick Prompt**: `⌘ K`
71+
- **Copy Widget**: `⌘ C`
72+
- **Cut Widget**: `⌘ X`
73+
- **Paste Widget**: `⌘ V`
74+
- **Delete Widget**: *(Shortcut not assigned)*
75+
76+
#### Navigation
77+
78+
- **Show Command Palette**: `⌘ P`
79+
- **Expand/Select Node or Children**: ``
80+
- **Collapse/Select Node or Children**: ``
81+
- **Select Next Visible Node**: ``
82+
- **Select Previous Visible Node**: ``
83+
- **Select Next Sibling**: `⌘ ↓`
84+
- **Select Previous Sibling**: `⌘ ↑`
85+
86+
#### Settings
87+
88+
- **View all Keyboard Shortcuts**: `⌥ /`
89+
- **Toggle Platform Brightness (Light/Dark Mode)**: `⌥ Shift B`
90+
- **Open Feedback Form**: `⌥ F`

0 commit comments

Comments
 (0)