Skip to content

Commit c6a828a

Browse files
committed
Fixed # links
1 parent c7eb763 commit c6a828a

File tree

26 files changed

+53
-58
lines changed

26 files changed

+53
-58
lines changed

docs/ff-integrations/streaming/mux/integrate-mux.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The following flow illustrates how these pages will work together:
5959

6060
:::note[Prerequisites]
6161

62-
- [**Set up Firebase**](#) for your project and [**Enable Billing**](#). This is required to deploy
62+
- [**Set up Firebase**](../../firebase/connect-to-firebase-setup.md) for your project and [**Enable Billing**](https://firebase.google.com/pricing). This is required to deploy
6363
the cloud functions (to your Firebase project) that will create the live
6464
stream on the Mux server.
6565

@@ -76,8 +76,8 @@ store the stream information, and it looks like this:
7676

7777
The steps to create a collection are as follows:
7878

79-
- Be familiar with [**Structuring the Firebase Database**](#).
80-
- Create a [**Collection**](#) and provision at least four fields that store broadcast information
79+
- Be familiar with [**Structuring the Firebase Database**](../../database/cloud-firestore/getting-started.md#structuring-the-database).
80+
- Create a [**Collection**](../../database/cloud-firestore/creating-collections.md) and provision at least four fields that store broadcast information
8181
such as `is_live`, `name`, `url`, and `time` (this will be used to filter the list by latest
8282
stream first).
8383
![img_3.png](img_3.png)
@@ -388,7 +388,7 @@ Now you can run the app and test your widget.
388388

389389
:::info
390390
Mux Livestream can not be tested in Run Mode. Instead, you will need
391-
to [**test it on real device devices**](#).
391+
to **test it on real device devices**.
392392
:::
393393

394394
## Customizing MuxBroadcast
@@ -485,7 +485,7 @@ The live indicator appears as soon as you start live streaming (at the top left
485485
To customize the live indicator:
486486

487487
* To change its text (i.e. from LIVE to something else), open the **Live Text Style** section and
488-
set the **Text**. You can also [customize the text](#) if
488+
set the **Text**. You can also [customize the text](../../../resources/ui/widgets/built-in-widgets/text.md#common-text-styling-properties) if
489489
needed.
490490
* To change the indicator appearance, open the **Live Container & Icon** section and use the
491491
property such as **Icon**, **Icon size**, **Icon Color**, **Background Color**, and **Border

docs/intro/ff-ui/canvas.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ There's a zoom in ( + ) and a zoom out ( - ) button to control the zoom level of
2929

3030
## AI Generated Page
3131

32-
From here, you can [create a page using AI](#).
32+
From here, you can [create a page using AI](../../resources/ui/pages/pages.md#create-an-ai-generated-page).
3333

3434
## Add App Bar
3535

36-
From here, you can add an [App Bar](#) to your page. Clicking this button opens a popup displaying different [App Bar styles](#) for you to choose from. Just select any App Bar style from the list and it will appear in the Preview Screen.
36+
From here, you can add an [App Bar](../../resources/ui/pages/page-elements.md#appbar) to your page. Clicking this button opens a popup displaying different App Bar styles for you to choose from. Just select any App Bar style from the list and it will appear in the Preview Screen.
3737

3838
![AddAppBar.avif](imgs/AddAppBar.avif)
3939

@@ -132,7 +132,7 @@ Changing the canvas color can be helpful when creating components, especially wh
132132

133133
## Add Nav Bar
134134

135-
This button allows you to add the [Nav Bar](#) to your page. Clicking on this button opens the popup that allows you to enable Nav Bar for your project. Once the Nav Bar is enabled, you can customize it to match your design.
135+
This button allows you to add the [Nav Bar](../../resources/ui/pages/page-elements.md#nav-bar) to your page. Clicking on this button opens the popup that allows you to enable Nav Bar for your project. Once the Nav Bar is enabled, you can customize it to match your design.
136136

137137
![AddNavBar.avif](imgs/AddNavBar.avif)
138138

docs/intro/ff-ui/resource-hierarchy.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ The diagram below illustrates how a FlutterFlow app is structured.
2121
1. **Project**: Represents the overall application you are building in FlutterFlow. It encompasses all the other elements listed below and serves as the container for your entire app development effort within FlutterFlow. Learn more about creating a project [here](../../resources/projects/how-to-create-find-organize-projects#how-to-create-a-project).
2222
2. **Page**: Refers to individual screens within the FlutterFlow project. Each page represents a part of the user interface where users can interact with the app. Multiple pages collectively make up the complete user interface of your application. Learn more about pages in FlutterFlow [here](../../resources/ui/pages/pages#creating-a-page).
2323
3. **Built-in-widgets**: These are pre-designed widgets provided by FlutterFlow that you can use to build your app’s user interface. Built-in widgets simplify the development process by offering common UI elements such as buttons, text fields, sliders, etc. Learn more about widgets [here](../../resources/ui/overview#widgets).
24-
4. **Component**: A component in FlutterFlow is a reusable UI block that can be used across different pages within the project. Components are useful for maintaining consistency and reducing redundancy in the app design, as the same component (like a custom dialog box) can be inserted wherever needed. Learn more about creating a component [here](#).
25-
5. **Design System**: This refers to a set of standards for design within your FlutterFlow project. A design system in FlutterFlow includes predefined styles that ensure visual consistency throughout the app. Learn more about design system [here](#).
24+
4. **Component**: A component in FlutterFlow is a reusable UI block that can be used across different pages within the project. Components are useful for maintaining consistency and reducing redundancy in the app design, as the same component (like a custom dialog box) can be inserted wherever needed. Learn more about creating a component [here](../../resources/ui/components/overview.md).
25+
5. **Design System**: This refers to a set of standards for design within your FlutterFlow project. A design system in FlutterFlow includes predefined styles that ensure visual consistency throughout the app. Learn more about design system [here](../../ff-concepts/design-system/design-system.md).
2626

2727
## Flutter to FlutterFlow
2828

@@ -33,5 +33,5 @@ If you are coming from Flutter, it is beneficial for you to understand the Flutt
3333
1. **MyApp to Project**: In Flutter, `MyApp` typically represents the root of your application, where you set up routes and other global configurations. In FlutterFlow, the equivalent is the "Project," which encompasses the entire application you are building, including its configurations and settings. Learn more about creating a project [here](../../resources/projects/how-to-create-find-organize-projects#how-to-create-a-project).
3434
2. **MyPage to Page**: `MyPage` in Flutter represents a specific screen in the app. Similarly, In FlutterFlow, each "Page" corresponds to a screen, where you build the layout and functionality specific to that page of the project. Learn more about pages in FlutterFlow [here](../../resources/ui/pages/pages#creating-a-page).
3535
3. **Column, Button, Text to Built-in widgets**: In FlutterFlow, widgets are categorized under "Built-in widgets," which users can drag and drop onto their canvas to build the UI. Learn more about widgets [here](../../resources/ui/overview#widgets).
36-
4. **Custom widget to Component**: `CustomWidget` in Flutter indicates user-defined widgets that serve specific functions not covered by built-in widgets. FlutterFlow translates this into "Component" allowing you to create and use custom components within your projects. Learn more about creating a component [here](#).
37-
5. **Theme/style constants to Design System**: In Flutter, theme and style constants are used to ensure consistent styling across an app. FlutterFlow uses a "Design System" to manage and apply uniform styles and themes throughout the application. Learn more about design system [here](#).
36+
4. **Custom widget to Component**: `CustomWidget` in Flutter indicates user-defined widgets that serve specific functions not covered by built-in widgets. FlutterFlow translates this into "Component" allowing you to create and use custom components within your projects. Learn more about creating a component [here](../../resources/ui/components/overview.md).
37+
5. **Theme/style constants to Design System**: In Flutter, theme and style constants are used to ensure consistent styling across an app. FlutterFlow uses a "Design System" to manage and apply uniform styles and themes throughout the application. Learn more about design system [here](../../ff-concepts/design-system/design-system.md).

docs/intro/ff-ui/storyboard.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ We use the following elements inside the storyboard:
2727

2828
![storyboard-legend.avif](imgs/storyboard-legend.avif)
2929

30-
1. The solid line is used to represent the [Navigate](#) or [Login](#) action.
31-
2. The dotted line is used to represent the [Bottom Sheet](#) action.
30+
1. The solid line is used to represent the [Navigate](../../ff-concepts/navigation-routing/page-navigation.md#navigate-to-action) or Login action.
31+
2. The dotted line is used to represent the Bottom Sheet action.
3232
3. The right arrow icon represents hidden widgets. These widgets may not be visible in the current page view (e.g., they might be on another tab) but they still have a navigation action to display them.
3333

3434
## Highlight routes on a page
@@ -57,5 +57,5 @@ Watch this video if you prefer watching a video tutorial.
5757

5858
<details>
5959
<summary>I am getting "Error: Unable to initialize Storyboard</summary>
60-
<p>This error typically occurs because the initial page has not been set. To resolve this, please set the initial page in the [App Details](#) settings of your project.</p>
60+
<p>This error typically occurs because the initial page has not been set. To resolve this, please set the initial page in the [App Details](../../resources/projects/settings/general-settings.md#app-details) settings of your project.</p>
6161
</details>

docs/intro/ff-ui/toolbar.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ From here, you will get access to essential resource links that will come in han
2424
1. **Search Docs**: If you are a paid user, we allow you to conduct a direct search from our documentation.
2525
2. **Community Forum**: We have a vibrant [community](https://community.flutterflow.io/) of users comprising individuals who share a mutual interest in FlutterFlow. This community actively engages in discussions, knowledge-sharing, and collaborative projects centered around FlutterFlow.
2626
3. **Feedback**: You can provide feedback and help us improve the product.
27-
4. **Bug report**: You can [submit a bug report](#) from here.
27+
4. **Bug report**: You can submit a bug report from here.
2828
5. **Tutorials**: You can start the tutorial for building your first app right inside FlutterFlow.
2929
6. **FAQs and Docs**: While building your app, you might need to consult our official documentation frequently. This option will redirect you to FlutterFlow documentation.
3030
7. **What's New?**: We want to keep you updated with all the latest features and changes that are being made in FlutterFlow. Using this option, you can directly access the updates regarding what's new in FlutterFlow.
@@ -45,7 +45,7 @@ The Command Palette makes it easy to find and use things in the App Builder. Ope
4545

4646
## Canvas size
4747

48-
We allow you to visualize and design your app for various mobile, tablet, and desktop devices. The [canvas](#) size is defined as width (in pixels) x height (in pixels). This size is determined according to the device selected. To set a custom canvas size, click on the Canvas Size and enter the width and height (in pixels) you want.
48+
We allow you to visualize and design your app for various mobile, tablet, and desktop devices. The [canvas](../ff-ui/canvas.md) size is defined as width (in pixels) x height (in pixels). This size is determined according to the device selected. To set a custom canvas size, click on the Canvas Size and enter the width and height (in pixels) you want.
4949

5050
<div style={{
5151
position: 'relative',
@@ -75,7 +75,7 @@ We allow you to visualize and design your app for various mobile, tablet, and de
7575

7676
## Project history
7777

78-
Understand the crucial concepts of project history, such as saving and versioning [here](#).
78+
Understand the crucial concepts of project history, such as saving and versioning [here](../../testing-deployment-publishing/branching-collaboration/saving-versioning.md).
7979

8080
## Project comments
8181

@@ -117,20 +117,20 @@ If there are any issues or warnings present in your current project that might r
117117

118118
## Branching
119119

120-
[Branching](#) enables you to create a separate copy of your existing project, allowing you to develop new features without affecting the current functionality.
120+
[Branching](../../testing-deployment-publishing/branching-collaboration/branching.md) enables you to create a separate copy of your existing project, allowing you to develop new features without affecting the current functionality.
121121

122122
## Developer menu
123123
The Developer Menu provides developers with access to tools such as code viewing, GitHub integration, and source code download capabilities.
124124

125125
1. **View Code**: This option lets you display the *Dart* code for all the pages of your FlutterFlow project. You can also take a look at the dependencies being used by the app here.
126126

127-
2. **Connect GitHub Repo**: You can use this option to connect and upload your project to [GitHub](https://github.com/) repository. See the step-by-step guide [here](#).
127+
2. **Connect GitHub Repo**: You can use this option to connect and upload your project to [GitHub](https://github.com/) repository. See the step-by-step guide [here](../../testing-deployment-publishing/exporting-code/push-to-github.md#connect-a-github-repo).
128128

129129
3. **Download Code**: You can download the entire codebase of the app generated by FlutterFlow using this option.
130130

131131
4. **Download APK**: Use this to generate a release build of your Android app. It will automatically download the `.apk` file after the building process is complete.
132132

133-
5. **FlutterFlow CLI**: You can also download the code using *[FlutterFlow CLI](https://pub.dev/packages/flutterflow_cli)*. See instructions [here](#).
133+
5. **FlutterFlow CLI**: You can also download the code using *[FlutterFlow CLI](https://pub.dev/packages/flutterflow_cli)*. See instructions [here](../../testing-deployment-publishing/exporting-code/ff-cli.md).
134134

135135
:::note
136136
_Connect GitHub Repo_, _Download Code_, and _Download APK_ features requires a [**paid plan**](https://flutterflow.io/pricing).

docs/intro/ff-ui/widget-palette.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The Widget Palette in FlutterFlow provides access to all UI elements. These are
1515

1616
## 1. Widgets
1717

18-
From the Widgets tab, you can access all standard FlutterFlow widgets. They are organized into [different categories](#) based on their purpose, making it easier to navigate and find the appropriate widget for your app.
18+
From the Widgets tab, you can access all standard FlutterFlow widgets. They are organized into different categories based on their purpose, making it easier to navigate and find the appropriate widget for your app.
1919

2020
## 2. Components
2121

docs/intro/quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ To build the UI:
7474
</div>
7575

7676
:::info
77-
You can learn more about creating layouts [here](#).
77+
You can learn more about creating layouts [here](../ff-concepts/layout/building-layout.md).
7878
:::
7979

8080
## 3. Customize Style {#customize-style}
@@ -212,5 +212,5 @@ Congratulations! You've built your first app with FlutterFlow.
212212
## **Problems?**
213213

214214
If you're experiencing any issues with the app, ensure that you have followed the instructions correctly.
215-
<!-- For troubleshooting, refer to our [comprehensive guide](#) or -->
215+
<!-- For troubleshooting, refer to our comprehensive guide or -->
216216
To seek assistance from the [Community Forum](https://community.flutterflow.io/). If you're still encountering problems, don't hesitate to report the issue to our support team.

docs/resources/control-flow/backend-logic/api/rest-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ Learn more about **[JSONPath](https://support.smartbear.com/alertsite/docs/monit
573573

574574
To add JSON path:
575575

576-
1. First, [create](#) and [test](#) your API call.
576+
1. First, [create and test](../api/create-test-api-calls.md) your API call.
577577

578578
2. Inside the **JSON Paths** section, click on the **+ Add JSON Path**.
579579
3. Enter your **JSON Path** and give it a **Name**.
@@ -711,7 +711,7 @@ You can copy the boilerplate code into ChatGPT and request the completion for th
711711

712712
:::tip[Additonally]
713713
* You can add multiple interceptors to any API call.
714-
* When the same interceptor is used by multiple APIs, you can create an [**API group**](#) and
714+
* When the same interceptor is used by multiple APIs, you can create an [**API group**](../api/create-test-api-calls.md#grouping-api-calls) and
715715
add the interceptor under the **Advanced Group Settings**. However, you can override the interceptor for any API within the group if you wish to.
716716
:::
717717

docs/resources/control-flow/backend-logic/api/streaming-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ The user interface includes a section for the average rating, and number of revi
109109

110110
### 2. Create API
111111

112-
For building this app, we will use [OpenAI's Chat Completion API](https://platform.openai.com/docs/guides/text-generation/chat-completions-api) to generate a summary based on given reviews. Before you build anything related to APIs in your app, it's essential to create and test the APIs to ensure they work correctly. So let's [create and test](#) the Chat Completion API in our project.
112+
For building this app, we will use [OpenAI's Chat Completion API](https://platform.openai.com/docs/guides/text-generation/chat-completions-api) to generate a summary based on given reviews. Before you build anything related to APIs in your app, it's essential to create and test the APIs to ensure they work correctly. So let's [create and test](../api/create-test-api-calls.md) the Chat Completion API in our project.
113113

114114
Once created, open the **Advanced Settings** and **enable** the **Process Stream Response** toggle.
115115

docs/resources/control-flow/backend-logic/backend-query/algolia-search-query.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ There are some prerequisites before you start defining the search query:
2222

2323
:::warning[Complete setup]
2424
If you haven't completed these steps, please follow the instructions present on the following
25-
page before proceeding: [Algolia Search](#)
25+
page before proceeding: [Algolia Search](../../../../ff-integrations/search/algolia-search.md)
2626
:::
2727

2828
## Building Search UI

0 commit comments

Comments
 (0)