You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/get-started/quickstart.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,14 +11,14 @@ keywords: [quickstart, getting started, dreamflow tutorial, ai app generation, f
11
11
12
12
When starting a new Dreamflow project you have three options:
13
13
14
-
-**[Start from a prompt](/quickstart#start-with-a-prompt)**: when you want to get a jumpstart on a brand new app idea
15
-
-**[Start from scratch](/quickstart#start-from-scratch)**: when you want to incrementally build from a blank project
16
-
-**[Start from a template](/quickstart#start-from-a-template)**: when you want to start from an existing beautiful, tailored app
14
+
-**[Start from a prompt](/quickstart#start-with-a-prompt)**: when you want to get a jumpstart on a brand new app idea.
15
+
-**[Start from scratch](/quickstart#start-from-scratch)**: when you want to incrementally build from a blank project.
16
+
-**[Start from a template](/quickstart#start-from-a-template)**: when you want to start from an existing beautiful, tailored app.
17
17
18
18
19
19
## Start With a Prompt
20
20
21
-
Dreamflow's AI-powered app generation allows you to create fully functional, production-ready applications from simple text and image descriptions. Simply describe what you want to build, add some screenshots of design inspiration, and Dreamflow Agent will generate the entire app structure, UI components, and functionality for you.
21
+
Dreamflow's AI-powered app generation allows you to create fully functional, production-ready applications from simple text and image descriptions. Simply describe what you want to build, additionally add screenshots for design inspiration, and Dreamflow Agent will generate the entire app structure, UI components, and functionality for you.
Copy file name to clipboardExpand all lines: docs/workspace/content-panel.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ The panel displays a real-time preview of your Flutter app running in **debug mo
39
39
### Inspect Mode
40
40
Inspect mode provides an interactive way to explore and modify your Flutter widgets visually. When enabled, hovering over widgets in the preview reveals their boundaries with colored overlays, making it easy to understand widget layout and hierarchy. This visual feedback helps developers quickly identify and understand the structure of their UI components.
41
41
42
-
To turn on inspect mode, select the **"Inspect Mode"** toggle in the Content Panel canvas.
42
+
To turn on inspect mode, select the **Inspect Mode** toggle in the Content Panel canvas.
43
43
44
44
Selecting a widget with a click automatically synchronizes the [Widget Tree](modules-panel/widget-panel.md) and [Property Panel](properties-panel.md) to display detailed information about that widget, maintaining the highlight until another selection is made. This seamless integration between the preview and development panels streamlines the workflow for analyzing and modifying widgets. The context menu, accessed through right-click, offers powerful widget-specific actions including property editing, adding context to agent, code navigation, and other operations, enabling rapid iterations on your Flutter application's user interface.
45
45
@@ -48,9 +48,9 @@ Dreamflow provides integrated hot reload and hot restart capabilities that allow
48
48
49
49
**Hot Reload** applies your code changes instantly while preserving the current application state. This is ideal for UI modifications, styling updates, and minor code changes. To Hot Reload the preview, click the **lightning button** at the top of the Content Panel.
50
50
51
-
**Hot Restart** completely restarts your Flutter app with all code changes applied, resetting the application state. Use this for structural changes, when hot reload fails, or after fixing compilation errors. To Hot Restart the preview, click the **refresh** button at the top of the Content Panel.
51
+
**Hot Restart** completely restarts your Flutter app with all code changes applied, resetting the application state. Use this for structural changes, when hot reload fails, or after fixing compilation errors. To Hot Restart the preview, click the **refresh** button at the top right of the Content Panel.
52
52
53
-
**Stop Preview**fully ends the preview session. While Dreamflow works to prevent issues, sometimes the preview can enter an unusual or broken state. If problems aren’t resolved by Hot Reload or Hot Restart, it’s best to click the **stop button** at the top of the Content Panel to stop the preview completely and restart it. Once stopped, you can restart the preview using the **Restart** button that appears in the preview device.
53
+
**Stop Preview** ends the preview session completely. While Dreamflow works to prevent issues, sometimes the preview can enter an unusual or broken state. If problems aren’t resolved by Hot Reload or Hot Restart, it’s best to click the **Stop**button at the top of the Content Panel to stop the preview completely and restart it. Once stopped, you can restart the preview using the **Restart** button that appears on the preview device.
54
54
55
55
:::info[If you're still experiencing issues in the preview...]
56
56
You can try to reload the project entirely by selecting the project name in the top left corner and selecting "Reload Project"
Copy file name to clipboardExpand all lines: docs/workspace/modules-panel/theme.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,7 @@ Typography in Dreamflow ensures that text styles remain consistent throughout yo
84
84
-**Body**: Paragraphs, descriptions, and content-heavy areas.
85
85
-**Label**: Smaller text for buttons, captions, or UI labels.
86
86
87
-
You can modify your text styles in the Theme panel and then use them anywhere a `TextSyle` class is expected - for example, in the style property of the `Text` widget.Use the "Apply Theme" button next to the `Style` property in the property panel to select your text style.
87
+
You can modify your text styles in the Theme panel and then use them anywhere a `TextSyle` class is expected - for example, in the style property of the `Text` widget.Use the "Apply Theme" button next to the `Style` property in the property panel to select your text style.
Copy file name to clipboardExpand all lines: docs/workspace/modules-panel/widget-panel.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ You can change the *view* of the Widget Tree to be either Consolidated or Detail
65
65
## Widget Management
66
66
67
67
Right-click on any widget to access a comprehensive context menu with options for:
68
-
-**[Adding new widgets](/workspace/widget-tree#add-widget)(to widgets that take other widgets as children or have properties that take a widget)
68
+
-[Adding new widgets](/workspace/widget-tree#add-widget)(to widgets that take other widgets as children or have properties that take a widget)
69
69
- Wrapping existing widgets
70
70
- Copying, cutting, and pasting widgets
71
71
- Navigating to component definitions
@@ -185,7 +185,7 @@ To wrap a widget, right click and select "Wrap Widget." Then select a widget to
185
185
<p></p>
186
186
187
187
### Jumping to Component Definitions and References
188
-
When building your application, you may want to see where Custom Components are defined or referenced. For example, you can right click instances of components (denoted using the component icon) and click "See Definition" to jump to the definition of that component in the Widget Tree.
188
+
When building your application, you may want to see where custom components are defined or referenced. For example, you can right click instances of components (denoted using the component icon) and click "See Definition" to jump to the definition of that component in the Widget Tree.
189
189
190
190
To see references, or usages, of a component, right click on the component and select "See References." This allows you to step through each of the references within the Widget Tree.
0 commit comments