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
+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
@@ -3,13 +3,13 @@
3
3
4
4
## Start With a Prompt (4 mins)
5
5
6
-
Dreamflow's AI-powered app generation allows you to create complete, functional applications from simple text or image descriptions. Simply describe what you want to build, and Dreamflow Agent will generate the entire app structure, UI components, and functionality for you.
6
+
Dreamflow's AI-powered app generation allows you to create fully functional, production-ready applications from simple text or image descriptions. Simply describe what you want to build, and Dreamflow Agent will generate the entire app structure, UI components, and functionality for you.
7
7
8
8
Ready to create your app? Simply:
9
9
10
10
1. Open Dreamflow and click the textbox that says "Start with a prompt..."
11
11
2. Enter your app description and wait for the Agent to generate your complete app.
12
-
3. Review and customize the generated project in the [workspace](#)
12
+
3. Review and customize the generated project in the [workspace](#).
13
13
14
14
15
15
The Agent will create all the necessary screens, components, and functionality based on your description, giving you a fully functional app that you can further customize and deploy.
Copy file name to clipboardExpand all lines: docs/workspace/modules-panel/widget-panel.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,15 +22,15 @@ The Widget Tree panel is a powerful hierarchical view that displays the complete
22
22
23
23
**Nodes** are individual widgets in your Flutter app's hierarchy, displayed as tree items in the Widget Tree panel. Each node represents a widget instance with its properties and relationships.
24
24
25
-
**Root Nodes** - Top-level widgets that represent entire screens or components
25
+
**Root Nodes**: Top-level widgets that represent entire screens or components.
26
26
-**Page Nodes**: Main app screens
27
27
-**Component Nodes**: Reusable custom widgets used in your main screen.
28
28
29
-
**Child Nodes** - Widgets that contain other widgets
29
+
**Child Nodes**: Widgets that contain other widgets
30
30
-**Single Child**: Widgets with exactly one child (Container, Padding, Center)
31
31
-**Multiple Children**: Widgets with multiple children (Column, Row, Scaffold)
32
32
33
-
**Leaf Nodes** - Terminal widgets with no children such as Text, Image, Icon, Button.
33
+
**Leaf Nodes**: Terminal widgets with no children such as Text, Image, Icon, Button.
34
34
35
35
The tree structure helps you understand your app's widget hierarchy and navigate between different UI components.
36
36
@@ -92,7 +92,7 @@ Insert new widgets into your tree by selecting a parent widget and choosing from
92
92
<p></p>
93
93
94
94
95
-
Here's a quick demo to show you can add a widget to a Column:
95
+
Here’s a quick demo showing how you can add a widget to a Column:
96
96
97
97
<div style={{
98
98
position: 'relative',
@@ -165,8 +165,8 @@ These operations enable efficient widget reuse and layout restructuring without
165
165
### Go to Code
166
166
The "Go to Code" and "Go to Component" features provide quick navigation from the widget tree to the underlying [code implementation](../content-panel.md#code-editor). You can access these features by hovering over a widget in the tree and right-clicking on the widget to use the context menu options.
167
167
168
-
-**Go to Code**: Jumps to the Code Editor and highlights the code for the selected widget
169
-
-**Go to Component**: For custom project widgets, opens the component file with the relevant widget code highlighted
168
+
-**Go to Code**: Jumps to the Code Editor and highlights the code for the selected widget.
169
+
-**Go to Component**: For custom project widgets, opens the component file with the relevant widget code highlighted.
170
170
171
171
This makes it easy to inspect and modify widget code directly from the visual layout editor.
0 commit comments