Skip to content

Commit 57085e9

Browse files
Troubleshooting Guide Topics: divided the contents in https://docs.flutterflow.io/troubleshooting i… (#444)
* divided the contents in https://docs.flutterflow.io/troubleshooting into 5 parts and added to articles in troubleshooting section. * added assets, fixed build errors by updating correct internal links * reverted the changes. renamed troubleshooting guide to detecting issues --------- Co-authored-by: Pooja Bhaumik <[email protected]>
1 parent 70822fb commit 57085e9

File tree

6 files changed

+16
-22
lines changed

6 files changed

+16
-22
lines changed

docs/troubleshooting/deployment/resolve_errors_in_downloaded_code.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,5 @@ When you download your project from FlutterFlow and run it locally in your IDE,
3131

3232
If the current version on your machine is different than what is currently supported by FlutterFlow, you can downgrade or upgrade to the supported version. You can learn more about [**upgrading Flutter**](/testing/local-run/#4-running-app-on-device). ​By following these steps, you can fix the errors that you face after downloading the code and run locally.
3333

34-
If you continue to experience issues, contact the FlutterFlow support team via live chat or email at [email protected].
35-
36-
37-
3834

35+
If you continue to experience issues, contact the FlutterFlow support team via live chat or email at [email protected].

docs/troubleshooting/deployment/run_mode_build_failure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@ This guide provides a structured approach to troubleshooting and resolving "Run
9292
- **Utilize local debugging**:
9393

9494
If the error is elusive, running the debugger locally on your downloaded code can help identify the issue.
95-
95+
9696
- **Leverage browser tools**:
9797

9898
The browser's console and developer tools can offer insights, especially when dealing with errors that don't manifest in traditional debug outputs.
9999

100100

101101
:::info[Additional Resources]
102102
[Basic Troubleshooting Guide – FlutterFlow Documentation](https://docs.flutterflow.io/troubleshooting/basic-troubleshooting-guide)
103-
:::
103+
:::

docs/troubleshooting/index.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
---
22
slug: /troubleshooting
3-
title: Troubleshooting Guide
3+
title: Detecting Issues
44
description: A guide to troubleshoot or debug issues that occur within FlutterFlow project.
55
tags: [Troubleshooting]
66
sidebar_position: 0
77
keywords: [Troubleshooting, Debugging, Detect Issues, Runtime Errors]
88
---
99

10-
# Troubleshooting Guide
10+
# Detecting Issues
1111

12-
This is a general troubleshooting guide for any issues that occur within FlutterFlow projects.
13-
14-
## Detecting issues
12+
This is a general troubleshooting guide for detecting any issues that occur within FlutterFlow projects.
1513

1614
We've improved our issue detection capabilities and added features to provide clearer insights into what might be causing these problems. Here are some options you can use to troubleshoot the issue.
1715

docs/troubleshooting/test-mode/firestore_permission_error-run_mode.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ This error is typically triggered when:
2525

2626
Example:
2727

28-
- If Firestore rules are configured as:
28+
- If Firestore rules are configured as:
2929

30-
```js
30+
```js
3131
rules_version = '2';
3232
service cloud.firestore {
3333
match /databases/{database}/documents {
@@ -37,15 +37,14 @@ This error is typically triggered when:
3737
}
3838
}
3939
```
40-
40+
4141
Any Firestore query will fail because no read or write access is allowed.
4242

4343
- If rules allow only authenticated access:
4444

45-
```js
45+
```js
4646
allow read, write: if request.auth != null;
47-
```
48-
47+
```
4948
And a query is placed on a page before the user signs in (e.g., on the login screen), it will trigger this error.
5049

5150
Descriptive widget names can help you quickly identify which query or widget is triggering the permission issue. In the example above, the error message references a widget named Container. Renaming it to something like UserQueryContainer can make debugging easier.

docs/troubleshooting/test-mode/gray_screen_run_mode.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Seeing a gray screen in Run Mode usually points to a configuration issue in your
1515

1616
1. **Check Firebase Permissions**
1717

18-
Ensure that `[email protected]` has the following roles:
18+
Ensure that [email protected] has the following roles:
1919

2020
- **Editor**
2121
- **Cloud Functions Admin**
@@ -26,7 +26,7 @@ Seeing a gray screen in Run Mode usually points to a configuration issue in your
2626
1. Go to the **Firebase Console**.
2727
2. Select your project → **Project Overview**.
2828
3. Navigate to **Users and permissions** → **Advanced permissions**.
29-
4. Locate `[email protected]` and ensure it has the roles listed above.
29+
4. Locate [email protected] and ensure it has the roles listed above.
3030

3131
![](../assets/20250430121529462395.png)
3232

@@ -81,7 +81,7 @@ Seeing a gray screen in Run Mode usually points to a configuration issue in your
8181

8282
7. **Refresh FlutterFlow Environment**
8383

84-
- Press `Ctrl + R` (Windows) or `Cmd + R` (Mac) to refresh FlutterFlow.
84+
- Press Ctrl + R (Windows) or Cmd + R (Mac) to refresh FlutterFlow.
8585
- Clear your browser cache.
8686
- Log out and back in.
8787

@@ -100,4 +100,4 @@ Seeing a gray screen in Run Mode usually points to a configuration issue in your
100100
:::info[Additional Resources]
101101
- **[Run Flutter App Locally](/testing/local-run)**
102102
- **[FlutterFlow Firebase Integration Guide](/integrations/firebase/connect-to-firebase/#step-1-set-up-your-project)**
103-
:::
103+
:::

docs/troubleshooting/test-mode/slow_test_mode_load.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ If the issue persists after following the steps above, check the
4747
**[official support](https://intercom.help/flutterflow/en/articles/7052737-test-mode-is-not-loading-or-is-very-slow-it-takes-a-long-time-to-load-the-app)** article.
4848
:::
4949

50-
Following these steps should resolve most Test Mode performance issues and reduce load times for future previews.
50+
Following these steps should resolve most Test Mode performance issues and reduce load times for future previews.

0 commit comments

Comments
 (0)