Skip to content

Commit 80a62fc

Browse files
committed
Fix broken links
1 parent b6ff64c commit 80a62fc

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

docs/ff-concepts/adding-customization/custom-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ color for the mobile app. Here's how it looks:
3636

3737
To do so, you can edit *main.dart* file by following the steps below:
3838

39-
1. Create a [Custom Action](custom-actions.md#custom-actions) for the code you want to include in a `main.
39+
1. Create a [Custom Action](custom-actions.md) for the code you want to include in a `main.
4040
dart` file. For this
4141
example, here's code in a custom action named 'setStatusbarColor'.
4242

docs/ff-concepts/adding-customization/vscode-extension.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ When working with custom code, it's important to test your implementations. We r
160160

161161
You can then choose to test your app from FlutterFlow, using a [Test Mode session](https://docs.flutterflow.io/testing/run-your-app/#test-mode) or [Local Run](https://docs.flutterflow.io/testing/local-run), or run your app locally from Visual Studio Code.
162162

163-
Before testing from FlutterFlow, ensure you’ve [pushed your changes](#pushing-changes-from-visual-studio-code).
163+
Before testing from FlutterFlow, ensure you’ve [pushed your changes](#push-changes-to-flutterflow).
164164

165165
To run your project from Visual Studio Code, make sure the Flutter extension is installed. Once set up, you can simply click the Run (play) button. For further details, refer to [Flutter’s official documentation](https://docs.flutter.dev/tools/vs-code#running-and-debugging).
166166

docs/ff-concepts/navigation-routing/bottom-sheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ You can also create one from the 'BottomSheet' [**templates**](../../resources/u
8888

8989
![Set Background and Barrier color](imgs/bottom-sheet-background-color.png)
9090

91-
9. You can also [pass parameters](../../resources/ui/components/using-components.md#pass-down-values) to a bottom sheet component.
91+
9. You can also [pass parameters](../../resources/ui/components/creating-components.md#creating-a-component-parameter) to a bottom sheet component.
9292
10. By default, this type of action blocks the following action (if any) from triggering while this action is in progress. (i.e., meaning the bottom sheet is present on the screen). However, in some cases, you might want to allow the next action (after this) to execute, for example, making an API call immediately after showing the bottom sheet. To do so, enable **Non Blocking** option.
9393
11. By default, **Non Dismissble** option closes the bottom sheet when you click outside of it. To disable this behavior, enable this option.
9494
12. With **Enable Drag** option, you can open and close the bottom sheet using a swipe gesture.

docs/ff-integrations/payments/braintree.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ Make sure the user is authenticated before triggering the Braintree Payment Acti
183183
If you want to keep only the Credit Card option on your checkout page, you'll need to add the **CreditCardFrom** widget to the page. Follow the steps below:
184184

185185
1. Select the **Payment Method** as ***Credit Card***.
186-
2. Drag and drop the [**CreditCardFrom**](../../resources/ui/components/built-in-components/creditcardform.md) widget onto the canvas.
186+
2. Drag and drop the [**CreditCardFrom**](../../resources/ui/widgets/built-in-widgets/creditcardform.md) widget onto the canvas.
187187
3. You can modify the design of the form widget as per your app's needs.
188188
4. Again select the **checkout button** to complete defining the Action.
189189
5. Enter the **Currency Code** and you can define the optional attributes like **Tax Rate Percentage** and **Shipping Cost**.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ To customize a button that allows you to start a stream:
437437
under the **Start Button Style** section.
438438

439439
3. To change the button's text, open the **Start Button Text** section and set the **Text**. You can
440-
also [customize the text](../../../resources/ui/widgets/widget-commonalities.md#styling-text) if
440+
also [customize the text](../../../resources/ui/widgets/basic-widgets/text.md#common-text-styling-properties) if
441441
needed.
442442

443443
4. To change the button's icon, open the **Start Button Icon** section and select the new icon. You

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ The user interface includes a section for the average rating, and number of revi
102102
* [**Text Widget**](../../../ui/widgets/basic-widgets/text.md):
103103
Displays
104104
the AI-generated summary of the reviews and a list of the positive and negative points mentioned in the reviews.
105-
* [**Chart (Bar chart) Widget**](../../../ui/components/built-in-components/chart/bar-chart.md): Visual representation of the sentiment distribution (positive, neutral, negative) in a bar chart.
105+
* [**Chart (Bar chart) Widget**](../../../ui/widgets/built-in-widgets/chart/bar-chart.md): Visual representation of the sentiment distribution (positive, neutral, negative) in a bar chart.
106106

107107
<p></p>
108108
![streaming-api-example-demo.png](../imgs/streaming-api-example-demo.png)

docs/resources/data-representation/custom-data-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ To create a custom data type, specify its name and the corresponding fields. Eac
6464

6565
## Accessing Custom Data Type
6666

67-
After creating the custom data type, you can use it to create variables, such as an app state variable, and then access them. Here's an [example](app-state.md#working-with-app-state-variables).
67+
After creating the custom data type, you can use it to create variables, such as an app state variable, and then access them. Here's an [example](app-state.md#app-state-variables).
6868

6969
### Custom Data Type in Custom Code
7070
Sometimes, you might want to access the custom data type in your custom code. Our custom code editor allows you to receive and pass data into a variable of a custom data type. For example, you could manipulate or analyze the data as needed, and then return the modified result in the custom data type.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ Aside from standard data types used throughout FlutterFlow, you can also create
226226

227227
- **Action (callback)**: This allows component users to pass in actions into the component. The component can then invoke the action, usually referred to as a callback, in its own action flows. Callbacks are often using to handle events, like updating a parent's state when a button has been pressed. [You can learn more about how to use callbacks here.](/resources/ui/components/callbacks)
228228

229-
- **Widget Builders**: Widget builders allow the component users to pass in widgets to be used within the component's widget tree. This is especially useful when you want users to dynamically subsitute content for some part of a component - like displaying an item in a custom dropdown, or creating a component for some consistent layout. [You can learn more about how to use Widget Builders here.](/resources/ui/components/widget-builder-parameters)
229+
- **Widget Builders**: Widget builders allow the component users to pass in widgets to be used within the component's widget tree. This is especially useful when you want users to dynamically subsitute content for some part of a component - like displaying an item in a custom dropdown, or creating a component for some consistent layout. [You can learn more about how to use Widget Builders here.](widget-builder-parameters.md)
230230

231231

232232
### Actions

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sidebar_position: 2
88
Components in FlutterFlow can be added to the widget tree of a page or another component. They help streamline
99
development by allowing you to reuse design and functionality throughout your app. Components can
1010
accept parameters, making them adaptable to specific contexts. Additionally, you can use [callbacks](/resources/ui/components/callbacks)
11-
to pass actions from parent entities to child components, enabling dynamic and interactive behavior. You can also use [widget builders](/resources/ui/components/widget-builder-parameters) to subsitute dynamic content into the component's widget tree.
11+
to pass actions from parent entities to child components, enabling dynamic and interactive behavior. You can also use [widget builders](widget-builder-parameters.md) to subsitute dynamic content into the component's widget tree.
1212

1313
To learn more about creating components, see [this page](/resources/ui/components/creating-components).
1414

docs/resources/ui/components/widget-builder-parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Let’s see an example from an eCommerce app. On the shipping address page, you
2727
To create a component with a widget builder as a parameter, use the steps outlined below.
2828

2929
### Create a Parameter of Type Widget Builder
30-
Create a new component and add the base widgets that will be unmodified. Next, define a parameter and set its type to **Widget Builder**. To [pass data from the current component to the widget builder](#pass-parameter-from-component-to-widget-builder), you can specify a parameter for the widget builder.
30+
Create a new component and add the base widgets that will be unmodified. Next, define a parameter and set its type to **Widget Builder**. To pass data from the current component to the widget builder, you can specify a parameter for the widget builder.
3131

3232
<div style={{
3333
position: 'relative',

0 commit comments

Comments
 (0)