Skip to content

Commit 5db820a

Browse files
committed
Fixed broken links
1 parent c6a828a commit 5db820a

Some content is hidden

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

56 files changed

+90
-102
lines changed

docs/ff-concepts/adding-customization/cloud-functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ loading indicator during the logo creation process. Its value is set to *True* b
5959

6060
### 2. Build a page
6161

62-
Let's add a page that allows users to enter the prompt. To speed up, you can add a page from the [template](/getting-started/adding-new-page#add-page) or use [AI Page Gen](/getting-started/adding-new-page#ai-gen-page). Here is the page added using AI Page Gen, and after some modification, it looks the below:
62+
Let's add a page that allows users to enter the prompt. To speed up, you can add a page from the template or use [AI Page Gen](../../resources/ui/pages/pages.md#create-an-ai-generated-page). Here is the page added using AI Page Gen, and after some modification, it looks the below:
6363

64-
Also, see how to [build a page layout](/widgets-and-components/ui-and-layout-101) if you want to build a page from scratch.
64+
Also, see how to [build a page layout](../../ff-concepts/layout/building-layout.md) if you want to build a page from scratch.
6565

6666
![img_7.png](imgs/img_7.png)
6767

docs/ff-concepts/animations/animations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Enhancing your app with animations significantly improves the user experience, m
1313
- [**Implicit Animations**](implicit_animations.md): Animate changes in specific widget properties, such as the height of a Container.
1414
- [**Hero Animations**](hero_animations.md): Animate a widget that transitions smoothly between screens, also known as shared element transitions.
1515
- [**Page Transition Animations**](page_transitions.md): Specify transitions between pages within your app.
16-
- **Import Animations**: Import animations you've created using other tools such [lottiefiles](import-animations/lottie-animation) and [Rive](import-animations/rive-animation).
16+
- **Import Animations**: Import animations you've created using other tools such [lottiefiles](import-animations/lottie-animation.md) and [Rive](import-animations/rive-animation.md).
1717

1818

1919
To learn more about animations in FlutterFlow, check out this video:

docs/ff-concepts/animations/page_transitions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Here, the transitions are recorded with the duration set to 1000ms to make the a
2727

2828
## Animate single navigate transition
2929

30-
To set a transition animation for a single navigate action, first, ensure that you have added a [**Navigate To**](../../resources/ui/pages/navigation#navigate-to-action) action and then select an animation from the **Transition Type** dropdown. By default, the animations use 300 milliseconds as the duration for which it plays but you can change it by specifying a value inside the **Duration** (ms) field.
30+
To set a transition animation for a single navigate action, first, ensure that you have added a [**Navigate To**](../../ff-concepts/navigation-routing/page-navigation.md#navigate-to-action) action and then select an animation from the **Transition Type** dropdown. By default, the animations use 300 milliseconds as the duration for which it plays but you can change it by specifying a value inside the **Duration** (ms) field.
3131

3232
![single-navigate-transition-animation.avif](animation_gifs/single-navigate-transition-animation.avif)
3333

docs/ff-concepts/navigation-routing/deep-dynamic-linking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ respective store to install the app. After the app is installed, users can be ta
180180
intended app page.
181181

182182
For the dynamic link to work, you need to enable
183-
the [deep link](/advanced-functionality/deep-and-dynamic-linking#deep-link). You can think of a
183+
the [deep link](#adding-deep-link). You can think of a
184184
dynamic link as the additional benefit of the deep link.
185185

186186
:::note

docs/ff-integrations/authentication/firebase-auth/anonymous-login.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ keywords: [FlutterFlow, Anonymous Login, Authentication, Firebase]
1414
Before getting started with this section:
1515

1616
- Complete [**Firebase Setup**](../../firebase/connect-to-firebase-setup.md)
17-
- Complete [**Initial Setup**](auth-initial-setup) required for authentication.
17+
- Complete [**Initial Setup**](auth-initial-setup.md) required for authentication.
1818
- Learn more about the concepts
1919
of [**Anonymous Authentication**](../authentication-methods.md#anonymous-authentication)
2020
:::

docs/ff-integrations/authentication/firebase-auth/apple-login.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Apple sign-in functionality is only supported for iOS.
5050
Before getting started with this section:
5151

5252
1. Complete [**Firebase Setup**](../../firebase/connect-to-firebase-setup.md).
53-
2. Complete [**Initial setup**](auth-initial-setup) required for authentication.
53+
2. Complete [**Initial setup**](auth-initial-setup.md) required for authentication.
5454
3. Created an [**Apple account**](https://appleid.apple.com/account?appId=632&returnUrl=https%3A//developer.apple.com/account/).
5555
4. [**Purchased an Apple Developer membership**](https://developer.apple.com/programs/enroll/).
5656
Read more about the [**Apple Developer Program**](https://developer.apple.com/programs/) and how to sign up.

docs/ff-integrations/authentication/firebase-auth/email-sign-in.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ keywords: [FlutterFlow, Email Login, Authentication, Firebase]
1414
Before getting started with this section:
1515

1616
- Complete [**Firebase Setup**](../../firebase/connect-to-firebase-setup.md)
17-
- Complete [**Initial Setup**](auth-initial-setup)
17+
- Complete [**Initial Setup**](auth-initial-setup.md)
1818
:::
1919

2020
## Enable Email Login Provider in Firebase
@@ -81,7 +81,7 @@ To enable this in FlutterFlow, follow these steps:
8181
:::info
8282
To understand why email verification is required when authenticating with an email and password,
8383
refer
84-
to [**Authentication Methods**](../authentication-methods)
84+
to [**Authentication Methods**](../authentication-methods.md)
8585
:::
8686
1. Add a new action immediately after the **Create Account** action.
8787

docs/ff-integrations/authentication/firebase-auth/facebook-login.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Facebook login allows users to authenticate using their Facebook Accounts.
2020
Before getting started with this section:
2121

2222
- Complete [**Firebase Setup**](../../firebase/connect-to-firebase-setup.md)
23-
- Complete [**Initial Setup**](auth-initial-setup)
23+
- Complete [**Initial Setup**](auth-initial-setup.md)
2424
:::
2525

2626
## Adding Facebook sign-in

docs/ff-integrations/authentication/firebase-auth/google-login.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Google Sign-In allows users to authenticate using their Google Accounts.
1616
Before getting started with this section:
1717

1818
- Complete [**Firebase Setup**](../../firebase/connect-to-firebase-setup.md)
19-
- Complete [**Initial Setup**](auth-initial-setup)
19+
- Complete [**Initial Setup**](auth-initial-setup.md)
2020
- Added **SHA-1 key** and regenerated **Config Keys**.
2121
:::
2222

docs/ff-integrations/authentication/firebase-auth/jwt-token-login.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Let's build an example that uses a JWT token to log into the app. Here's how it
3030
Before getting started with this section:
3131

3232
- Complete [**Firebase Setup**](../../firebase/connect-to-firebase-setup.md).
33-
- Complete [**Initial setup**](auth-initial-setup) required for authentication.
33+
- Complete [**Initial setup**](auth-initial-setup.md) required for authentication.
3434
:::
3535

3636

0 commit comments

Comments
 (0)