Skip to content

Commit dd90dc3

Browse files
authored
Merge branch 'main' into feature/multiple-conditions-description
2 parents 762c0ad + bdc5a4c commit dd90dc3

File tree

15 files changed

+123
-136
lines changed

15 files changed

+123
-136
lines changed

docs/accounts-billing/plan-pricing.md

Lines changed: 61 additions & 43 deletions
Large diffs are not rendered by default.
Lines changed: 3 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,8 @@
11

22
# Referral Program
33

4-
Everyone with a FlutterFlow account has a personal referral code to share with friends and colleagues. For every referral that subscribes, you will receive one month of FlutterFlow Pro credited to your account.
4+
:::warning[Discontinued]
5+
With the retirement of the Pro plan, the existing referral program has been discontinued. Any active referral discounts will end at your next renewal. However, referral credits you’ve already earned will remain in your account and can be redeemed for free months on the new Growth plan.
56

6-
In order to receive this reward, the person you referred will need to:
7-
8-
1. Click your referral link and create a FlutterFlow account.
9-
2. Complete purchase of any of the paid subscriptions (after their trial period ends).
10-
11-
You are only eligible for one referral reward per individual. If your referral has already signed up for FlutterFlow, this will not be eligible for a reward.
12-
13-
:::info
14-
In order to account for refunds and cancellations, referral credits will be processed 45 days after your referral's first payment.
7+
We are also exploring new referral and incentive programs to better support and reward our community under the updated pricing model.
158
:::
16-
17-
### How To Find And Share Your Referral Code
18-
19-
Your personal referral code is listed on your [My Account Page](https://app.flutterflow.io/account).
20-
21-
1. Navigate to the [My Account Page](https://app.flutterflow.io/account) and scroll down to the **Referrals** section.
22-
2. To copy your referral code, press the copy icon.
23-
24-
![referral-link](imgs/referral-link.avif)
25-
26-
### How To Track How Many People Have Signed Up Using Your Referral Code
27-
28-
You can track your referrals in the **Referrals** section on the [My Account Page](https://app.flutterflow.io/account). Here you will see:
29-
30-
* **Signed Up:** How many people have signed up for FluterFlow using your referral link.
31-
* **Subscribed:** How many people have subscribed to a FlutterFlow paid subscription using your referral link.
32-
33-
![track-referrals.png](imgs/track-referral.avif)
34-
35-
### I forgot to sign-up using the referral link, can I add this after creating account?
36-
37-
Unfortunately, we are unable to retroactively change this after your account has been created.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ On the right side, you can configure the following Boilerplate Settings:
9090
3. **Require Authentication**: Turn on this setting if you want users to be authenticated to execute this cloud function.
9191
4. **Cloud Function Region**: This determines the geographical location of the servers where your functions are hosted and executed. Ideally, you should keep this same as your *Default GCP resource location* and the Cloud Function Region specified in the Firebase Advanced Settings.
9292

93-
![img_8.png](imgs/img_8.png)
93+
![cf-region.avif](imgs/cf-region.avif)
9494

9595
#### Configuring Input & Output
9696

docs/ff-concepts/adding-customization/common-examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Use this approach only when the component is a fixed element that does not chang
6767
:::
6868

6969
In a **[Custom Widget](custom-widgets.md)**, you can integrate a previously built **[FlutterFlow Component](../../resources/ui/components/intro-components.md)** directly, saving you from recreating child content in code. For example, if you’re building a Custom Widget to display custom dialog boxes or bottom sheets using a package from
70-
[pub.dev](custom-code.md#pubdev), you can simply return an existing Component created on the canvas, rather than coding a new one from scratch.
70+
[pub.dev](https://pub.dev/), you can simply return an existing Component created on the canvas, rather than coding a new one from scratch.
7171

7272
:::tip[Imports]
7373
When referencing a Component class in your code, FlutterFlow will automatically add the necessary import statement.

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

Lines changed: 31 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -263,14 +263,7 @@ In the generated code, descriptions are added as comments before the function de
263263
:::
264264

265265
## Adding a Pubspec Dependency
266-
To utilize community-built Flutter solutions in your FlutterFlow projects, you can add a "pubspec dependency". The **pubspec file** is the configuration file in Flutter projects that lists external packages or libraries, along with other project configurations.
267266

268-
269-
:::tip[Scope]
270-
You can only add a pubspec dependency to [**Custom Actions**](custom-actions.md) & [**Custom Widgets**](custom-widgets.md).
271-
:::
272-
273-
#### Pub.dev
274267
[Pub.dev](https://pub.dev) is the official package repository for Dart and Flutter. It hosts a wide range of packages, libraries, and tools that developers can use to extend the functionality of their Dart and Flutter applications.
275268

276269
:::info[Flutter Favorite Packages]
@@ -281,17 +274,33 @@ You can explore the Flutter Favorite packages on **[pub.dev's Flutter Favorites
281274

282275
:::
283276

284-
To add a pubspec dependency from [**pub.dev**](#pubdev), follow these steps:
285-
286-
1. Create a new Custom Widget or Custom Action resource file, and be sure to give it a meaningful name.
277+
To add a pubspec dependency from pub.dev, go to **Settings and Integrations > Project Dependencies**, then open the **Custom Dependencies** tab. Click **Add Pub Dependency**, enter the **package name** and **version**, and click **Add** to include it in your project.
287278

288-
2. [**Generate the boilerplate code**](#generate-boilerplate-code) and copy the basic widget or function structure into the code editor.
289-
290-
3. Select the [**package you want from pub.dev**](#choosing-the-correct-package-from-pubdev) and review its details.
291-
292-
4. Copy the package name and version, and add them to the Custom Code settings in FlutterFlow. Then, copy the import statement and add it to the list of imports in the Custom Code resource. You can also copy example code from the Example tab on the package’s pub.dev page and modify it as needed — see more in the **[Setup Code](#setup-code)** section.
293-
294-
5. Click "Save & **[Compile Code](#compile-code)**" to apply the changes.
279+
<div style={{
280+
position: 'relative',
281+
paddingBottom: 'calc(56.67989417989418% + 41px)', // Keeps the aspect ratio and additional padding
282+
height: 0,
283+
width: '100%'}}>
284+
<iframe
285+
src="https://demo.arcade.software/oRtb2mYzh1fdRcgeoQjZ?embed&show_copy_link=true"
286+
title=""
287+
style={{
288+
position: 'absolute',
289+
top: 0,
290+
left: 0,
291+
width: '100%',
292+
height: '100%',
293+
colorScheme: 'light'
294+
}}
295+
frameborder="0"
296+
loading="lazy"
297+
webkitAllowFullScreen
298+
mozAllowFullScreen
299+
allowFullScreen
300+
allow="clipboard-write">
301+
</iframe>
302+
</div>
303+
<p></p>
295304

296305
### Choosing the correct package from pub.dev
297306

@@ -376,14 +385,13 @@ dependencies:
376385

377386
Here’s exactly how you do it:
378387

379-
380388
<div style={{
381389
position: 'relative',
382390
paddingBottom: 'calc(56.67989417989418% + 41px)', // Keeps the aspect ratio and additional padding
383391
height: 0,
384392
width: '100%'}}>
385393
<iframe
386-
src="https://demo.arcade.software/CgLCKJzdiCuaxMF04pg6?embed&show_copy_link=true"
394+
src="https://demo.arcade.software/KUqOcYwnQQ77uAcTA1dw?embed&show_copy_link=true"
387395
title=""
388396
style={{
389397
position: 'absolute',
@@ -424,7 +432,7 @@ To configure your custom code with the package, copy and paste the following ite
424432

425433
To use the dependency in your Custom Action or Custom Widget resource file, go to the package's pub.dev page and click the **Copy to Clipboard** icon next to the package name and version. Then, paste it into the **Pubspec Dependency** section (bottom right) of the FlutterFlow code editor.
426434

427-
![package-dependency-version-copy.png](imgs/package-dependency-version-copy.png)
435+
![package-dependency-version-copy](imgs/package-dependency-version-copy.avif)
428436

429437

430438
See **[example](#add-pubspec-dependency-to-custom-code-example-guide)** for more information.
@@ -469,7 +477,7 @@ FlutterFlow:
469477
width: '100%'
470478
}}>
471479
<iframe
472-
src="https://demo.arcade.software/EAqWwTSfjumXzJ3xB6FX?embed&show_copy_link=true"
480+
src="https://demo.arcade.software/e8vTIcA4EPju5XntsGiD?embed&show_copy_link=true"
473481
title=""
474482
style={{
475483
position: 'absolute',
@@ -496,11 +504,9 @@ This example demonstrates how to add a [**pub.dev**](https://pub.dev) package to
496504

497505
## Manage Dependencies
498506

499-
You can also add packages directly on the **Dependencies** page (at **Settings and Integrations > Project Setup > Project Dependencies**) and they will be reflected in your custom actions or custom widgets, because packages are managed at the project level.
500-
501-
Additionally, when you create a new custom action or widget, all previously added custom dependencies will be listed on the **Pubspec** **Dependencies** list on the right side. This ensures that you can easily track all custom dependencies in the project, avoiding duplication or conflicts that could override each other or cause project errors.
507+
You can manage dependencies directly from **Settings and Integrations > Project Dependencies** > **Custom Dependencies** tab.
502508

503-
If any project errors related to packages arise, they will be displayed in both the custom code editor and the Dependencies page. You can also update the version numbers of custom packages directly from the Dependencies page. This streamlined process helps maintain consistency and reduces potential issues related to custom packages.
509+
If version conflicts occur, warnings will appear in both the **Custom Dependencies** tab and the **Custom Code** editor. You can also bump package versions directly from the list, making it easier to resolve issues and keep dependencies consistent.
504510

505511
<div style={{
506512
position: 'relative',

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ FlutterFlow:
8080
width: '100%'
8181
}}>
8282
<iframe
83-
src="https://demo.arcade.software/EAqWwTSfjumXzJ3xB6FX?embed&show_copy_link=true"
83+
src="https://demo.arcade.software/e8vTIcA4EPju5XntsGiD?embed&show_copy_link=true"
8484
title=""
8585
style={{
8686
position: 'absolute',
347 KB
Binary file not shown.
Binary file not shown.

docs/misc/customer-support-policy.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,17 @@ Our support team is available from 5 AM to 5 PM Eastern Time, Monday through Fri
1212

1313
### How To Reach Us
1414

15-
* **Pro** and **Teams** users can reach us using the in-app chat inside FlutterFlow
16-
* We can also be reached at [email protected]
15+
Depending on your plan, there are multiple ways you can get support when using FlutterFlow:
16+
17+
- **Account and Billing Support**: Available for all plans. You can always reach out for help with managing your account or billing-related questions.
18+
19+
- **Community Support**: All users have access to the FlutterFlow Community Forums, where you can ask questions, share knowledge, and connect with other builders.
20+
21+
- **Email Support**: Available starting from the **Basic** plan and above. Get direct help from our support team via email.
22+
23+
- **In-App Support**: Available starting from the **Growth** plan and above. Chat directly with support specialists from within FlutterFlow for faster assistance.
24+
25+
- **Dedicated Live Support**: Exclusive to the **Enterprise** plan. Gain direct access to dedicated support specialists for priority, hands-on help.
1726

1827
### What We Can Help With
1928

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -207,11 +207,11 @@ data is cached, the same data will be used for all employees, which is not what
207207
<Tabs>
208208
<TabItem value="1" label="Data inaccuracy without Unique Key" default>
209209
<div class="video-container"><iframe src="https://www.loom.
210-
com/embed/b0383a28dd2c4ad4aa761c27be9f7d3d?sid=2d6ec072-976a-4116-b971-78c1c8e79704" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
210+
com/embed/ed9716ec74e542d8a264e87235ce3aec?sid=7b03c276-a8bb-4dbf-9131-acf0a1fa9e8b" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
211211
</TabItem>
212-
<TabItem value="2" label="Adding Unique Key ">
212+
<TabItem value="2" label="Adding Unique Key">
213213
<div class="video-container"><iframe src="https://www.loom.
214-
com/embed/ed9716ec74e542d8a264e87235ce3aec?sid=7b03c276-a8bb-4dbf-9131-acf0a1fa9e8b" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
214+
com/embed/b0383a28dd2c4ad4aa761c27be9f7d3d?sid=2d6ec072-976a-4116-b971-78c1c8e79704" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
215215
</TabItem>
216216
</Tabs>
217217

@@ -314,4 +314,4 @@ Follow the steps below to add this action to any widget.
314314
allow="clipboard-write">
315315
</iframe>
316316
</div>
317-
<p></p>
317+
<p></p>

0 commit comments

Comments
 (0)