Skip to content

Commit 1e8cb73

Browse files
committed
Add Firebase Setup links
1 parent 04d44f2 commit 1e8cb73

File tree

15 files changed

+41
-209
lines changed

15 files changed

+41
-209
lines changed

docs/Integrations/Authentication/How-Tos/Firebase-Auth/initial-setup.md

Lines changed: 0 additions & 176 deletions
This file was deleted.

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ keywords: [FlutterFlow, Cloud Functions, Serverless, Integration]
1414
We allow you to write and deploy Firebase Cloud Functions directly within the platform. With an integrated code editor, writing JavaScript cloud functions is quick and user-friendly. Each function has customizable boilerplate settings, including pre-configured essentials like memory, region, and timeout.
1515

1616
:::note
17-
You can find some interesting use cases [*here*](https://firebase.google.com/docs/functions/use-cases).
17+
Read up on some interesting use cases of
18+
[**Cloud Functions**](https://firebase.google.com/docs/functions/use-cases).
1819
:::
1920

2021
## Adding Cloud Functions
@@ -40,7 +41,8 @@ Here are the step-by-step instructions to build such an example:
4041
:::info[Before you Begin]
4142

4243
* Make sure the project is on Blaze plan on Firebase.
43-
* Completed all steps in the [Firebase Setup](/data-and-backend/firebase/firebase-setup).
44+
* Completed all steps in the
45+
[**Firebase Setup**](../../ff-integrations/firebase/connect-to-firebase-setup.md).
4446
:::
4547

4648
### 1. Add page state variables
@@ -50,6 +52,8 @@ For this example, you'll need to set up two [page state variables](/data-and-bac
5052
1. **generatingImage (*****Type: Boolean*****)**: This is used to control the visibility of a
5153
loading indicator during the logo creation process. Its value is set to *True* before initiating the API call and switched to *False* once the logo generation is complete.
5254
5. **logoImage (*****Type: ImagePath*****)**: This is used to hold the generated logo image. After a successful API call, the retrieved image URL is stored here, allowing the logo to be displayed in the Image widget.
55+
56+
<p></p>
5357
![img_6.png](imgs%2Fimg_6.png)
5458

5559
### 2. Build a page

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,10 @@ keywords: [FlutterFlow, Anonymous Login, Authentication, Firebase]
1313

1414
Before getting started with this section:
1515

16-
- Complete [**Firebase Setup**](#)
17-
- Complete [**Initial Setup**](initial-setup.md) required for authentication.
18-
16+
- Complete [**Firebase Setup**](.././../../firebase/connect-to-firebase-setup.md)
17+
- Complete [**Initial Setup**](auth-initial-setup) required for authentication.
1918
- Learn more about the concepts
20-
of [**Anonymous Authentication**](docs/Integrations/Authentication/Concepts/authentication-approaches.md)
19+
of [**Anonymous Authentication**](authentication-approaches.md)
2120
:::
2221

2322
## Enable Anonymous Authentication in Firebase

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

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ keywords: [FlutterFlow, Apple Login, Authentication, Firebase]
1212

1313
Apple Sign-In allows users to authenticate using their Apple Accounts.
1414

15-
:::warning
15+
:::warning[Support]
1616

1717
Apple sign-in functionality is only supported for iOS.
1818

@@ -49,11 +49,13 @@ Apple sign-in functionality is only supported for iOS.
4949

5050
Before getting started with this section:
5151

52-
1. Complete [**Firebase Setup**](#).
53-
2. Complete [**Initial setup**](initial-setup.md) required for authentication.
52+
1. Complete [**Firebase Setup**](../../../firebase/connect-to-firebase-setup.md).
53+
2. Complete [**Initial setup**](auth-initial-setup) required for authentication.
5454
3. Created an [**Apple account**](https://appleid.apple.com/account?appId=632&returnUrl=https%3A%2F%2Fdeveloper.apple.com%2Faccount%2F).
55-
4. [**Purchased an Apple Developer membership**](https://developer.apple.com/programs/enroll/). Please see [**this link**](https://developer.apple.com/programs/) for more details on the Apple Developer program and how to sign up.
56-
5. Apple sign-In can not be tested in Run Mode. You will need to test it on a real device or emulator.
55+
4. [**Purchased an Apple Developer membership**](https://developer.apple.com/programs/enroll/).
56+
Read more about the [**Apple Developer Program**](https://developer.apple.com/programs/) and how to sign up.
57+
5. Apple sign-In can not be tested in Run Mode. You will need to test it on a real device or
58+
emulator. Try with Local Run!
5759
:::
5860

5961
## Adding Apple sign-in

docs/ff-integrations/authentication/types/firebase-auth/initial-setup.md renamed to docs/ff-integrations/authentication/types/firebase-auth/auth-initial-setup.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
slug: /integrations/authentication/firebase/initial-setup
33
title: Initial Setup
44
description: Learn how to perform the initial setup for Firebase authentication in your FlutterFlow app.
5-
tags: [FlutterFlow, Initial Setup, Authentication, Firebase]
5+
tags: [Initial Setup, Authentication, Firebase]
66
sidebar_position: 0
77
keywords: [FlutterFlow, Initial Setup, Authentication, Firebase]
88
---
@@ -49,8 +49,7 @@ The 'users' collection stores the information for authenticated users.
4949

5050
:::tip[Skip if...]
5151
You have already enabled 'Create User Collection' while creating a new
52-
project with a Firebase setup.
53-
52+
project with [Firebase Setup](../../../firebase/connect-to-firebase-setup.md).
5453
:::
5554

5655
1. Click on the Firestore tab from the Navigation Menu (left side of your

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ keywords: [FlutterFlow, Email Login, Authentication, Firebase]
1313

1414
Before getting started with this section:
1515

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

2020
## Enable Email Login Provider in Firebase

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Facebook login allows users to authenticate using their Facebook Accounts.
1919

2020
Before getting started with this section:
2121

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

2626
## Adding Facebook sign-in

docs/ff-integrations/authentication/types/firebase-auth/github-login.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ The GitHub auth provides a convenient way for users to authenticate and log in t
1616

1717
Before getting started with this section:
1818

19-
- Complete [**Firebase Setup**](#).
20-
- Complete [**Initial setup**](initial-setup.md) required for authentication.
19+
- Complete [**Firebase Setup**](../../../firebase/connect-to-firebase-setup.md).
20+
- Complete [**Initial setup**](auth-initial-setup.md) required for authentication.
2121
:::
2222

2323

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ Google Sign-In allows users to authenticate using their Google Accounts.
1515

1616
Before getting started with this section:
1717

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ Let's build an example that uses a JWT token to log into the app. Here's how it
2929

3030
Before getting started with this section:
3131

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

3636

0 commit comments

Comments
 (0)