Skip to content

Commit 3fcd4b4

Browse files
committed
Add tags to widgets so they can available in tag pages.
1 parent c519a92 commit 3fcd4b4

37 files changed

+93
-39
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

docs/ff-concepts/navigation-routing/special-page-navigation/pageview-widget.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
slug: /concepts/navigation/pageview
33
title: PageView
44
description: Learn how to use the PageView widget for creating swipeable pages, perfect for creating onboarding screens or multi-step forms.
5-
tags: [PageView, FlutterFlow, UI, Widgets]
5+
tags: [PageView, FlutterFlow, UI, Widgets, Layout Elements]
66
sidebar_position: 2
77
keywords: [PageView, FlutterFlow, UI, Widgets]
88
---

docs/resources/ui/components/built-in-components/badge.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
1+
---
2+
tags: [Base Elements]
3+
---
24

35
# Badge
46

docs/resources/ui/components/built-in-components/barcode.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
1+
---
2+
tags: [Base Elements]
3+
---
24

35

46

docs/resources/ui/components/built-in-components/calendar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
slug: calendar
33
title: Calendar
4-
tags: []
4+
tags: [Base Elements]
55
description: Learn how to add Calendar widget in your FlutterFlow project.
66
---
77

docs/resources/ui/components/built-in-components/carousel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
slug: carousel
33
title: Carousel
4-
tags: []
4+
tags: [Layout Elements]
55
description: Learn how to add Carousel widget in your FlutterFlow project.
66
---
77

docs/resources/ui/components/built-in-components/chart/chart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
slug: overview
2+
slug: chart
33
title: Chart
4-
tags: []
4+
tags: [Base Elements]
55
description: Learn how to add Chart widget in your FlutterFlow project.
66
sidebar_position: 1
77
---

docs/resources/ui/components/built-in-components/choicechips.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
slug: choice-chips
33
title: ChoiceChips
4-
tags: []
4+
tags: [Form Elements]
55
description: Learn how to add ChoiceChips in your FlutterFlow app.
66
---
77

docs/resources/ui/components/built-in-components/count-controller.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
slug: count-controller
33
title: CountController
4-
tags: []
4+
tags: [Form Elements]
55
description: Learn how to add CountController in your FlutterFlow app.
66
---
77

docs/resources/ui/components/built-in-components/creditcardform.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
slug: credit-card-form
33
title: CreditCardForm
4-
tags: []
4+
tags: [Form Elements]
55
description: Learn how to add CreditCardForm in your FlutterFlow app.
66
---
77
# CreditCardForm

0 commit comments

Comments
 (0)