-
Notifications
You must be signed in to change notification settings - Fork 28
Description
Can we access your project?
- I give permission for members of the FlutterFlow team to access and test my project for the sole purpose of investigating this issue.
Current Behavior
On a page containing:
A ListView widget with a backend query bound to a GET request API call in Xano.
A TextField widget on the same page.
If I repeatedly tap into the TextField and quickly dismiss the keyboard — without changing the input — the backend query is triggered each time, resulting in multiple API calls. This behavior eventually causes a 429 Too Many Requests error from Xano.
Current Behvaiour:
Each focus/unfocus action on the TextField triggers the ListView’s backend query even if the textField is not Linked at all to the backend query not even as a parameter
This causes multiple unnecessary API calls, leading to a 429 Too Many Requests error from Xano.
Expected Behavior
The backend query (API call) should only execute when:
The TextField value changes (on input change), or the form is explicitly submitted. -under the condition it's bound to the backend query-
It should not re-run simply because the TextField gains or loses focus.
Steps to Reproduce
Open the affected page containing the ListView and TextField.
Ensure the ListView is bound to a backend query (GET request to Xano).
Tap inside the TextField to focus it.
Dismiss the keyboard without making any changes.
Repeat steps 5–6 multiple times in quick succession.
Reproducible from Blank
- The steps to reproduce above start from a blank project.
Bug Report Code (Required)
IT8ehvHqx89Pm7VE7aX6bu9anjwXKUg8UI0vjsNxcxAgIqLyEokMec+kclJuZ+amd2NMPk+ZgmAJp/eOuObuMfUoB0mrbrZ7wapASQCVTTuRb83XPLmZOGJ/J5tmfEy54KWz2CV4NvNaWVZkwDmyfOjLZDLsILnhNVg8Rs+aA9jDnHynGQ/JLiZHxSY7GnmuBss6LQ6xmbjN1a9blI/S/ol8qBVXzoPSwtX1TBKTWVk=
Visual documentation
Test.Mode.-.MVP01.-.Google.Chrome.2025-08-13.18-35-29.mp4
Environment
- FlutterFlow version: v6.1.43 (release August 13, 2025)
- Platform:Web and local run on andorid phone
- Browser name and version: Version 138.0.7204.184 (Official Build) (64-bit)
- Operating system and version affected: Windows 10 Pro -Version 22H2- OS Build 19045.6093
Additional Information
No response