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/ff-concepts/design-system/design-system.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
@@ -709,7 +709,7 @@ Make sure you have the proper rights or licenses to use the icons in your applic
709
709
710
710
**Steps to Generate and Add Custom Icons**
711
711
712
-
1. Head over to the [iconmoon](https://icomoon.io/app/#/select).
712
+
1. Head over to the [IcoMoon](https://icomoon.io/app/#/select).
713
713
2. Import your custom icon (.svg) or select from the free icons set.
714
714
3. Select the **Generate Font** tab.
715
715
4. Click on the Settings button (gear icon) beside the download text on the bottom right side.
@@ -814,7 +814,7 @@ If you prefer watching a video tutorial, here is the guide for you:
814
814
815
815
Creating a theme for widgets ensures that your app looks consistent and has a cohesive design. The Theme widgets can be reused, making it easy to update the styles of your app. If you decide to change any property of the widget, such as color scheme or fonts, you can update the theme widget instead of going through every widget individually. This can save a lot of time and effort, especially in larger projects.
816
816
817
-
For example, creating theme widgets for different types of buttons such as 'primary_button', 'secondary_button', and 'tertairy_button' with specific attributes like width, color, icon, border radius, and padding. Then, these widgets can be directly added to a page or applied to an existing widget.
817
+
For example, creating theme widgets for different types of buttons such as 'primary_button', 'secondary_button', and 'tertiary_button' with specific attributes like width, color, icon, border radius, and padding. Then, these widgets can be directly added to a page or applied to an existing widget.
818
818
819
819
### Adding theme widgets
820
820
@@ -978,4 +978,4 @@ If you prefer watching a video tutorial, here's the one for you:
978
978
<details>
979
979
<summary>How is the theme widget different from creating a template and component?</summary>
980
980
<p>The Theme Widget allows you to customize the visual appearance of a single widget, whereas templates consist of multiple widgets that create a unique UI layout with a specific purpose. On the other hand, components are fully-featured custom widgets that combine multiple widgets and actions to complete a task.</p>
Copy file name to clipboardExpand all lines: docs/ff-concepts/navigation-routing/nav-overview.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,12 +63,12 @@ This action involves navigating to a new screen by pushing a new route onto the
63
63
64
64
**What Happens Under the Hood:**
65
65
66
-
- When you push a route, a new screen is placed on top of the current stack. This means the current screen is still in the stack but is not visible to the user.
66
+
- When you push a route, a new screen is placed on top of the current stack. This means the previous screen is still in the stack but is not visible to the user.
67
67
- The new screen becomes the active screen that the user interacts with.
68
68
69
69
:::info
70
70
71
-
Learn more about adding this action [**here**](../../ff-concepts/navigation-routing/page-navigation.md#navigate-to-action).
71
+
Learn more about adding this action in the [**page navigation guide**](../../ff-concepts/navigation-routing/page-navigation.md#navigate-to-action).
72
72
73
73
:::
74
74
@@ -83,7 +83,7 @@ This action involves navigating back to the previous screen by popping the curre
83
83
84
84
:::info
85
85
86
-
Learn more about adding this action [**here**](../../ff-concepts/navigation-routing/page-navigation.md#navigate-back-action).
86
+
Learn more about adding this action in the [**page navigation guide**](../../ff-concepts/navigation-routing/page-navigation.md#navigate-back-action).
87
87
88
88
:::
89
89
@@ -98,6 +98,6 @@ This action involves replacing the current route with a new route. Unlike pushin
98
98
:::info
99
99
100
100
- This is useful when you want to prevent the user from navigating back to the previous screen.
101
-
- This action is essentially the **Navigate To** action with the **Replace Route** option enabled. Learn more about adding this action [**here**](../../ff-concepts/navigation-routing/page-navigation.md#navigate-to-action).
101
+
- This action is essentially the **Navigate To** action with the **Replace Route** option enabled. Learn more about adding this action in the [**page navigation guide**](../../ff-concepts/navigation-routing/page-navigation.md#navigate-to-action).
Copy file name to clipboardExpand all lines: docs/resources/control-flow/backend-logic/api/rest-api.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
@@ -343,7 +343,7 @@ Let's see how to get the JSON into the Custom Data Type using an example that fe
343
343
Here's how you do it:
344
344
345
345
1. First, ensure that you [create a custom data type](#create-custom-data-type-matching-to-json-structure) that matches your JSON structure.
346
-
2. Open your API call definition> **Response & Test tab > Response Type >**enablethe**Parse as
346
+
2. Open your API call definition> **Response & Test tab > Response Type >**enable the**Parse as
347
347
Data Type**. Select the **Data Type** that you want to convert into. For this example, it's 'AllProducts'.
348
348
349
349

@@ -790,4 +790,4 @@ Why am I getting a “Current variable is not valid” error?
790
790
<p>
791
791
This error typically indicates that the widget isn’t receiving the data type it expects. For example, passing a list of colors directly to a text widget will trigger the error. In such cases, convert or supply the data as a string (or another compatible type) so the widget can properly display it.
Copy file name to clipboardExpand all lines: docs/resources/projects/libraries.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
@@ -11,7 +11,7 @@ import TabItem from '@theme/TabItem';
11
11
12
12
# Libraries
13
13
14
-
Libraries enables you to share and reuse entire FlutterFlow projects as dependencies across multiple projects. This allows teams and developers to modularize their apps by creating shared libraries that include components, API calls, custom code, and more. By using libraries, development becomes more efficient and scalable.
14
+
Libraries enable you to share and reuse entire FlutterFlow projects as dependencies across multiple projects. This allows teams and developers to modularize their apps by creating shared libraries that include components, API calls, custom code, and more. By using libraries, development becomes more efficient and scalable.
15
15
16
16
:::info
17
17
A **Dependency** refers to an external library or resource that your project relies on to function correctly. When you create a new FlutterFlow project, certain dependencies are automatically added to support the generated code. Also, when you use a [**Custom Widget**](../../ff-concepts/adding-customization/custom-widgets.md), you are essentially adding dependencies to your project. Libraries take this concept further by allowing you to add entire FlutterFlow projects as dependencies.
@@ -386,4 +386,4 @@ We're working on Library Values, which will allow users to set specific values w
386
386
<p>
387
387
Projects can import libraries that themselves have imported other Libraries as dependencies. However, if the project and the library share the same dependency, the version must match exactly to avoid conflicts.
0 commit comments