Skip to content

Commit 3546eeb

Browse files
committed
Merge branch 'refs/heads/main' into pooja/feedback
# Conflicts: # src/components/Feedback/index.js
2 parents 455317a + 4c1df9b commit 3546eeb

File tree

107 files changed

+3742
-67
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+3742
-67
lines changed

docs/ff-concepts/layout/building-layout.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ keywords: [FlutterFlow, Building Layout, Concepts]
99

1010
# Building Layout
1111

12-
In FlutterFlow, you build a page layout using Widgets. **Widgets**, such as [Text](../../resources/ui/widgets/built-in-widgets/text.md), [Buttons](#), [Images](#), and [Icons](#), are visible on the screen. Others, like [Containers](#), [Rows](#), [Columns](#), and [Stacks](#), are not directly visible but help arrange and position the visible elements on the page.
12+
In FlutterFlow, you build a page layout using Widgets. **Widgets**, such as [Text](../../resources/ui/widgets/built-in-widgets/text.md), [Buttons](../../resources/ui/widgets/built-in-widgets/button.md), [Images](#), and [Icons](../../resources/ui/widgets/built-in-widgets/icons.md), are visible on the screen. Others, like [Containers](../../resources/ui/widgets/built-in-widgets/container.md), [Rows](#), [Columns](#), and [Stacks](#), are not directly visible but help arrange and position the visible elements on the page.
1313

14-
These widgets are categorized into four main types: [Layout Elements](#), [Base Elements](#),
15-
[Page Elements](#), and [Form Elements](#). To build a page, you combine different widgets from these categories to get the desired look and feel of your app.
14+
These widgets are categorized into four main types: [Layout Elements](/tags/layout-elements), [Base Elements](/tags/base-elements),
15+
[Page Elements](/tags/page-elements), and [Form Elements](/tags/form-elements). To build a page, you combine different widgets from these categories to get the desired look and feel of your app.
1616

1717
## Understanding layout concept
1818

1919
One of the most common layout patterns is to arrange widgets either **vertically** or **horizontally**. To display widgets in a vertical layout, use the **Column** widget. For a horizontal layout, use the **Row** widget. If you need to place one widget on top of another, use the **Stack** widget.
2020

2121
:::info
22-
**Composing widgets** is a fundamental aspect of creating layouts in FlutterFlow. It involves combining different widgets to form a cohesive and functional user interface. Understanding how to effectively compose widgets allows you to design complex layouts and create intuitive, user-friendly apps. Learn more about composing widgets [**here**](#).
22+
**Composing widgets** is a fundamental aspect of creating layouts in FlutterFlow. It involves combining different widgets to form a cohesive and functional user interface. Understanding how to effectively compose widgets allows you to design complex layouts and create intuitive, user-friendly apps. Learn more about composing widgets [**here**](../../resources/ui/widgets/composing-widgets.md).
2323

2424
:::
2525

@@ -155,13 +155,13 @@ The review section consists of multiple different widgets. First, add a Column t
155155

156156
Apart from Row, Column, and Stack widgets, there are some other widgets that are widely used for building the page layout. Here are some of them:
157157

158-
- [Container](#)
159-
- [Card](#)
160-
- [ListView](#)
161-
- [GridView](#)
162-
- [TabBar](#)
163-
- [PageView](#)
164-
- [Form](#)
158+
- [Container](../../resources/ui/widgets/built-in-widgets/container.md)
159+
- [Card](../../resources/ui/widgets/built-in-widgets/card.md)
160+
- [ListView](../../resources/ui/widgets/built-in-widgets/list-grid.md)
161+
- [GridView](../../resources/ui/widgets/built-in-widgets/list-grid.md)
162+
- [TabBar](../../ff-concepts/navigation-routing/special-page-navigation/tabbar-widget.md)
163+
- [PageView](../../ff-concepts/navigation-routing/special-page-navigation/pageview-widget.md)
164+
- [Form](../../resources/control-flow/user-interactivity/forms/forms.md)
165165

166166
## Video guides
167167

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"label": "Localization & Accessibility",
3+
"position": 6
4+
}

0 commit comments

Comments
 (0)