Skip to content

Commit 8802b9b

Browse files
committed
updated content, added FAQs in articles, updated assets.
1 parent bce712b commit 8802b9b

24 files changed

+339
-1
lines changed

docs/accounts-billing/account-management.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,25 @@ To create an API token tied to your account:
8383

8484
1. Navigate to your [account page in FlutterFlow](https://app.flutterflow.io/account).
8585
2. Near the bottom of the page, click **Create Token**
86+
87+
## FAQs
88+
89+
<details>
90+
<summary>Why can't I log in to the FlutterFlow community with my FlutterFlow account?</summary>
91+
92+
The FlutterFlow community is hosted on a separate platform and requires its own login credentials.
93+
Your FlutterFlow account does not automatically grant access to the community.
94+
95+
</details>
96+
97+
<details>
98+
<summary>How do I join the FlutterFlow community?</summary>
99+
100+
1. On the **Dashboard** screen, click **Resources**.
101+
2. Select **Join Community**.
102+
3. Check your inbox for an invitation email from **[email protected]**.
103+
4. Select **Accept the invitation** in the email and complete the account setup.
104+
105+
![Community Invitation Email](imgs/20250430121510782041.png)
106+
107+
</details>
194 KB
Loading
152 KB
Loading
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
title: Import Flutter Packages
3+
slug: /import-flutter-packages
4+
keywords: ['flutter', 'package', 'import', 'custom code', 'pub.dev']
5+
---
6+
7+
# Import Flutter Packages
8+
9+
Flutter packages extend app functionality by adding dependencies hosted on [pub.dev](https://pub.dev). These can be used in [Custom Widgets](/custom-widgets) and [Custom Actions](/custom-actions) to introduce new features or libraries into a project.
10+
11+
This guide explains how to add a package dependency and import it into your custom code.
12+
13+
:::info[Prerequisites]
14+
- Access to **[pub.dev](https://pub.dev)**.
15+
- An existing **Custom Widget** or **Custom Action** in your project.
16+
:::
17+
18+
## Steps to Add a Package Dependency
19+
20+
1. Open **[pub.dev](https://pub.dev)** and search for the desired package.
21+
2. Copy the **package name and version** by selecting the **Copy** icon next to the dependency string.
22+
23+
![](imgs/20250430121358899145.png)
24+
25+
3. In FlutterFlow, open the **Custom Widget** or **Custom Action** editor.
26+
4. Paste the copied dependency into the **Required Pubspec Dependencies** field.
27+
```yaml
28+
package_name: ^version
29+
5. 5. If no version is specified, FlutterFlow uses the latest version available on pub.dev.
30+
31+
Steps to Import the Package:
32+
33+
1. On the pub.dev package page, select the Installing tab.
34+
35+
2. Under the Import it section, copy the provided import statement.
36+
37+
3. Paste the import statement at the top of your Custom Widget or Custom Action code.
38+
39+
:::note
40+
- Ensure the package supports Flutter Web. Otherwise, it will not run in Run Mode or Test Mode.
41+
- After adding new parameters in a Custom Widget, compile it before use.
42+
- A Custom Widget or Action cannot be deleted if it is currently being used in the app. Remove all references before deleting.
43+
:::

docs/ff-integrations/firebase/connect-to-firebase-setup.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,3 +177,25 @@ If you want to deploy [Cloud Functions](https://firebase.google.com/products/fun
177177
2. Select **Purchase**. If this is your first time enabling billing, you will be taken to a new page to provide your payment information. Otherwise, you can set a project budget. Please see [this link](https://firebase.google.com/pricing) for additional information on Firebase pricing.
178178

179179
<img src="/img/firebase/billing.png" alt="Alt text" />
180+
181+
182+
## FAQs
183+
184+
<details>
185+
<summary>Does FlutterFlow generate SHA certificates automatically?</summary>
186+
187+
Yes. When using the **Automatic Firebase Setup** feature, FlutterFlow automatically generates the required **SHA certificates** and stores them in your project's app settings within Firebase.
188+
189+
</details>
190+
191+
<details>
192+
<summary>Can I manually generate and replace SHA certificates?</summary>
193+
194+
Yes. If you prefer to manage certificates manually, you can generate and replace SHA certificates by following Firebase's official instructions:
195+
196+
1. Open your **Firebase Project Settings**.
197+
2. Navigate to the **Your apps** section.
198+
3. Add or replace the **SHA-1** and **SHA-256** keys.
199+
4. Re-download the updated `google-services.json` or `GoogleService-Info.plist` and upload it to your FlutterFlow project.
200+
201+
</details>

docs/resources/projects/how-to-collaborate-on-projects.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,27 @@ understand how the project is evolving and collaborate more efficiently.
9090
:::info
9191
Teams users can access the last 7 days of project edits, while FlutterFlow
9292
Enterprise users can access and download all previous project edits.
93-
:::
93+
:::
94+
95+
## FAQ
96+
97+
<details>
98+
<summary>How do I add collaborators or team members to my project?</summary>
99+
100+
It is possible to invite collaborators and manage project team members directly within a project.
101+
102+
:::warning
103+
A user added to a project will only have access to the features available in their own account plan.
104+
:::
105+
106+
**Steps to add a team member:**
107+
108+
1. Select **Settings & Integrations** from the left navigation menu.
109+
2. Under **Project Setup**, select **Team**.
110+
3. Click **Invite User**. A popup will appear to enter the teammate’s email.
111+
4. Enter the **email address** and select **Invite**.
112+
5. If the user is not a FlutterFlow user yet, an invite email will be sent. Their status will remain **Pending** until they create an account.
113+
114+
![](imgs/20250430121506784010.gif)
115+
116+
</details>
69.6 KB
Loading
55.6 KB
Loading
52.3 KB
Loading
1.03 MB
Loading

0 commit comments

Comments
 (0)