Skip to content

Commit 935790d

Browse files
authored
Pooja/more links (#73)
* Fix more links * Fix supabase casing. * Fix supabase casing. * Fix supabase casing. * Fix supabase casing.
1 parent c1c6edb commit 935790d

File tree

32 files changed

+74
-70
lines changed

32 files changed

+74
-70
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Also, see how to [build a page layout](/widgets-and-components/ui-and-layout-101
6767

6868
Few things to note here:
6969

70-
* We use the [ConditionalBuilder](/widgets-and-components/widgets/base-elements/conditionalbuilder) widget to show/hide the loading indicator based on the *generatingImage* variable. **Tip**: The Else branch of this widget is nothing but a ProgressBar inside the Container with a [rotating loop animation](/widgets-and-components/animations#4.-rotate).
70+
* We use the [**ConditionalBuilder**](../layout/responsive-widgets/conditional-builder-widget.md) widget to show/hide the loading indicator based on the *generatingImage* variable. **Tip**: The Else branch of this widget is nothing but a ProgressBar inside the Container with a [rotating loop animation](../animations/widget_animations.md).
7171
* The Image widget uses the *logoImage* variable to display the logo.
7272

7373
### 3. Create and deploy Cloud Function
@@ -230,7 +230,7 @@ To add a dependency, open the `package.json` file and specify your package in th
230230

231231
### 5. Trigger Cloud Function
232232

233-
The newly created *Cloud Function* will be available as an action when you are adding one. For this example, on click of a button, we'll first set the *generatingImage*to *True* and then [trigger the Cloud Function](/actions/actions/cloud-function).
233+
The newly created *Cloud Function* will be available as an action when you are adding one. For this example, on click of a button, we'll first set the *generatingImage*to *True* and then trigger the **Cloud Function Action**.
234234

235235
<div class="video-container"><iframe src="https://www.loom.
236236
com/embed/5c712863f95c4fcabd5c3851a3cbe56b?sid=a7ac875f-11b5-4b5a-b3e2-8ae03ce49571" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>

docs/ff-concepts/design-system/design-system.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,10 @@ To create your own design system:
7979

8080

8181
<p></p>
82+
8283
6. To use the design system, open your project and navigate to **Theme Settings > Design System**.
8384
7. Click on the **No Design System Selected**.
84-
8. A pop will open displaying the list of the design systems, click on the newly created design system to add it to your project. **Note** that the design system created in [My Organization](#) will also be available here.
85+
8. A pop will open displaying the list of the design systems, click on the newly created design system to add it to your project. **Note** that the design system created in [My Organization](../../resources/projects/how-to-collaborate-on-projects.md#sharing-a-project-with-an-organization) will also be available here.
8586

8687
:::info
8788

docs/ff-integrations/authentication/supabase-auth/auth-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
slug: /integrations/authentication/supabase/auth-actions
33
title: Auth Actions
4-
description: Learn how to add Supabase authentication actions in your FlutterFlow app.
4+
description: Learn how to add Supabase Authentication actions in your FlutterFlow app.
55
tags: [FlutterFlow, Auth Actions, Authentication, Supabase]
66
sidebar_position: 1
77
keywords: [FlutterFlow, Auth Actions, Authentication, Supabase]

docs/ff-integrations/authentication/supabase-auth/email-supabase.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ Also, see how to build a page layout in case you want to build a page from scrat
6161

6262
Now, you can proceed to add an account creation flow, which basically consists of three actions in the following order:
6363

64-
1. Supabase [Create Account Action](/actions/actions/backend-database/supabase-authentication/create-account#email-signup)
65-
2. Supabase [Insert row action](/actions/actions/backend-database/supabase#1.-insert-row-action)
64+
1. Supabase [Create Account Action](auth-actions.md#create-account-action)
65+
2. Supabase [Insert row action](../../database/supabase/database-actions.md#insert-row-action)
6666
3. [Navigate](../../../ff-concepts/navigation-routing/nav-overview.md) action
6767

6868
The first one creates an account in Supabase and adds an email and password in the "auth.users" table (i.e., *Protected schemas > schema auth*). However, this action does not create an entry in the "users" table you created [here](/data-and-backend/supabase/supabase-authentication/initial-setup#1.-creating-a-users-table). To do so, you need to add another action called Supabase *insert row* action with the user's details, such as email and profile_pic. Once the entry has been created, you can navigate to the home page using the navigate action.
@@ -79,11 +79,11 @@ Here's how it looks:
7979

8080
### Adding Log In [Action]
8181

82-
To allow users to log in with their credentials, you can use [this](/actions/actions/backend-database/supabase-authentication/log-in#email-login) action.
82+
To allow users to log in with their credentials, you can use [this](auth-actions.md#log-in-action) action.
8383

8484
### Adding Logout [Action]
8585

86-
To let users log out of your app, you can use [this](/actions/actions/backend-database/supabase-authentication/log-out) action.
86+
To let users log out of your app, you can use [this](auth-actions.md#log-out-action) action.
8787

8888
### Verify user creation
8989

docs/ff-integrations/authentication/supabase-auth/initial-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
slug: /integrations/authentication/supabase/initial-setup
33
title: Initial Setup
4-
description: Learn how to perform the initial setup for Supabase authentication in your FlutterFlow app.
4+
description: Learn how to perform the initial setup for Supabase Authentication in your FlutterFlow app.
55
tags: [FlutterFlow, Initial Setup, Authentication, Supabase]
66
sidebar_position: 0
77
keywords: [FlutterFlow, Initial Setup, Authentication, Supabase]

docs/ff-integrations/database/local-sql/sqlite/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ com/embed/35564ad5e8be4f58aa72527bc6818183?sid=2740d823-df42-49c3-ae54-8e0e95a72
224224

225225
## 7. Delete note
226226

227-
You can delete an existing note from the database using the [SQLite query action](/actions/actions/backend-database/sqlite-query) with the type set to *Update Query* and Query Name to [DeleteNote](/settings-and-integrations/integrations/sqlite#id-4.-deletenote).
227+
You can delete an existing note from the database using the [SQLite query action](../../../../resources/control-flow/backend-logic/backend-query/sqlite-query.md) with the type set to *Update Query* and Query Name to **Delete Note**.
228228

229229
:::tip[Pro Tip]
230230
To refresh the page, simply add an [**Update App State Action**](../../../../resources/data-representation/app-state.md) Action with the Update Type set
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"label": "Supabase"
3+
}

docs/ff-integrations/database/Supabase/database-actions.md renamed to docs/ff-integrations/database/supabase/database-actions.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
slug: /integrations/database/supabase/database-actions
33
title: Database Actions
4-
description: Learn about Supabase database actions in your FlutterFlow app, including how to perform various database operations.
4+
description: Learn about Supabase Database actions in your FlutterFlow app, including how to perform various database operations.
55
tags: [FlutterFlow, Supabase, Database, Actions]
66
sidebar_position: 1
77
keywords: [FlutterFlow, Supabase, Database, Actions]
@@ -80,17 +80,15 @@ com/embed/f2a75f9b0e144f6aab06cc1f0965541b?sid=6f57ff8a-ca2a-4c47-833d-03fa928b8
8080
8. Similarly, add the field for the other UI elements.
8181

8282

83-
84-
85-
8683
:::tip[How to & Tips]
8784

8885
<div class="video-container"><iframe src="https://www.loom.
8986
com/embed/08cb8a851350428bbc226f2e7ce9d2b3?sid=b3d097cf-6f84-4f69-893a-3a363cbf7143" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
9087

9188
<p></p>
89+
9290
If you have a flow like this, *HomePage* -> *AssignmentDetailsPage* ->
93-
*UpdateAssignmentPage*, you can enable the **Replace Route** option (see point no. 5 [here](/actions/actions/navigation/navigate)) when you navigate from *AssignmentDetailsPage* to *UpdateAssignmentPage*. And then chain the [Navigate Back](/actions/actions/navigation/navigate-back#adding-navigate-back-action) action after the update action. This will directly open the *HomePage* after the row is updated.
91+
*UpdateAssignmentPage*, you can enable the **Replace Route** option (see point no. 5 [here](../../../ff-concepts/navigation-routing/page-navigation.md#navigate-to-action)) when you navigate from *AssignmentDetailsPage* to *UpdateAssignmentPage*. And then chain the [Navigate Back](../../../ff-concepts/navigation-routing/page-navigation.md#navigate-back-action) action after the update action. This will directly open the *HomePage* after the row is updated.
9492
:::
9593

9694

docs/ff-integrations/gemini/gemini.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,7 @@ This action enables your app to analyze images and generate descriptive text abo
9292
* **Input**: *Text prompt* - "Identify the object in the image?"
9393
* **Input**: *Image Type* - There are two ways you can provide an image.
9494

95-
96-
+ **Image Network URL**: You can provide the URL of the image hosted on the internet. If you upload an image to [Firebase](/actions/actions/utilities/upload-data#id-1.-firebase) or [Supabase](/actions/actions/utilities/upload-data#id-2.-supabase), you can provide the image via ***Widget State > Uploaded File URL****.*
95+
+ **Image Network URL**: You can provide the URL of the image hosted on the internet. If you upload an image to **Firebase** or **Supabase**, you can provide the image via ***Widget State > Uploaded File URL****.*
9796
+ **Uploaded Image File**: You can also provide an image file directly [from your device](/actions/actions/utilities/upload-data#id-3.-local-upload-widget-state) via ***Widget State > Uploaded Local File****.*
9897
* **Output**: *Action Output Variable Name* - "This is a pipe organ. It is a large musical instrument that is used in churches, concert halls, and other large buildings. The sound of a pipe organ is very powerful and can be used to create a wide variety of music."
9998

docs/ff-integrations/notifications/one-signal/one-signal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ com/embed/55a72de8e15e418581cc8b49fc108b12?sid=052ead4c-96e4-4e9a-95c5-40162eb0d
6262
<figcaption class="centered-caption"></figcaption>
6363
</figure>
6464

65-
4. Now, at appropriate event in your app, you can [add an action](/actions/actions/integrations/onesignal#adding-onesignal-action) that adds the user to the OneSignal's subscription.
65+
4. Now, at appropriate event in your app, you can [add an action](#adding-onesignal-action) that adds the user to the OneSignal's subscription.
6666

6767
5. To test SMS functionality, follow the continuation of the instructions in the [SMS documentation](https://documentation.onesignal.com/docs/sending-sms-messages#sending-sms-notifications-from-dashboard).
6868

0 commit comments

Comments
 (0)