Skip to content

Commit 3cf9f7a

Browse files
Add links to widget tree section (#193)
* add links to widget tree section * Updated page properties panel image * update page properties image with bullet arrows --------- Co-authored-by: Pinkesh <[email protected]>
1 parent c906864 commit 3cf9f7a

File tree

5 files changed

+12
-15
lines changed

5 files changed

+12
-15
lines changed

docs/resources/ui/components/intro-components.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ slug: /resources/ui/components
99
Components in FlutterFlow are reusable widgets. You design the widget once and can use it throughout your app
1010
to save time, ensure consistency, and make it easier to maintain.
1111

12+
When you add a component to a [**Page**](../pages/intro-pages.md), it becomes part of that page's **[Widget Tree](../widgets/intro-widgets.md#widget-tree)**. This allows the component to interact with other widgets, inherit properties, and respond to state changes as part of the page's structure.
13+
1214
Components help in the following ways:
1315

1416
- **Consistency:** Components provide a consistent look and behavior, reducing the likelihood of
@@ -20,7 +22,7 @@ Components help in the following ways:
2022
app automatically reflect those changes. This significantly reduces the effort required to
2123
maintain and update the app.
2224

23-
:::tip[CLasses vs Instances]
25+
:::info[CLasses vs Instances]
2426
Learn more about **[Classes and their Instances](../overview.md)** and what they mean in
2527
FlutterFlow.
2628
:::
889 KB
Loading

docs/resources/ui/pages/intro-pages.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ In FlutterFlow, a **Page** represents a single screen in your app. Under-the-hoo
1010

1111
Pages are composed of various UI elements, or widgets. Widgets are added to a page when they are added to the page's **Widget Tree**.
1212

13+
:::note[Widget Tree]
14+
The **Widget Tree** is a structural representation of how widgets are organized within a Page. To learn more, check out the [**Widget Overview**](../widgets/intro-widgets.md#widget-tree) documentation.
15+
:::
16+
1317
In FlutterFlow, pages are automatically configured to handle [routing](https://docs.flutterflow.io/resources/ui/pages/properties#route-settings). Additionally, pages can have [input parameters](https://docs.flutterflow.io/resources/ui/pages/properties#page-parameters) and [state variables](https://docs.flutterflow.io/resources/ui/pages/page-lifecycle#page-state).
1418

1519
:::info

docs/resources/ui/pages/pages-properties.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@ sidebar_position: 1
66

77
# Properties Panel
88

9+
In FlutterFlow, the properties panel on the right helps you set up and manage your pages. It opens when you click on the root element in the [Widget Tree](../widgets/intro-widgets.md#widget-tree) (on the left).
910

10-
In FlutterFlow, the properties panel located on the right side of the interface
11-
plays a crucial role in configuring and managing the various aspects of your
12-
pages. This panel is divided into several sections, each dedicated to different
13-
settings and adjustments you can make to customize your pages.
11+
The panel is organized into sections, each focusing on different settings to customize your pages.
1412

1513
Here’s a detailed look at what you can typically find and modify in this panel:
16-
![props-panel.png](../imgs/props-panel.png)
14+
![page-properties-panel.png](../imgs/page-properties-panel.png)
1715

1816
### Page Parameters
1917

docs/resources/ui/widgets/widget-properties.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,9 @@ sidebar_position: 2
66

77
# Properties Panel
88

9-
In FlutterFlow, the Properties Panel located on the right side of the interface plays a crucial role
10-
in configuring and managing the various aspects of your widgets. This panel is divided into several
11-
sections, each dedicated to different settings and adjustments you can make to customize your
12-
widgets.
9+
In FlutterFlow, the Properties Panel on the right helps you configure and manage your widgets. It opens when you click on a widget or [component](../components/intro-components.md) in the [**Widget Tree**](../widgets/intro-widgets.md#widget-tree).
1310

14-
## Widget Properties
15-
16-
When you click on a widget from the Widget Tree, the **Widget Properties Panel** opens up on the
17-
right side. There you can customize the properties for the selected widget, which may vary
18-
based on the type of widget and also add other advanced configurations to the widget.
11+
The panel is divided into sections, each focusing on settings specific to the selected widget. The available options may vary depending on the widget type, with additional advanced configurations available for further customization.
1912

2013
![advanced-configs-widgets.png](../imgs/advanced-configs-widgets.png)
2114

0 commit comments

Comments
 (0)