Can we access your project?
Current Behavior
When entering a value in a Snackbar-related input field in FlutterFlow, the editor becomes noticeably laggy.
It feels like FlutterFlow is recalculating or triggering an update action after every single character typed, instead of waiting until the input is finished or loses focus.
For example, when typing a longer value, each keystroke causes a short delay, which makes the input feel very slow and unresponsive.
Expected Behavior
Typing into the field should be smooth and responsive.
Any expensive recalculation, validation, or update operation should ideally be debounced or triggered after the user finishes typing, rather than after every keystroke.
Steps to Reproduce
Add or configure a Snackbar action/widget.
Click into a value/input field.
Start typing text.
Notice that the UI lags after almost every character.
Reproducible from Blank
Bug Report Code (Required)
no code
Visual documentation
Environment
- FlutterFlow version:
- Platform:
- Browser name and version:
- Operating system and version affected:
Additional Information
It looks similar to an onChanged handler triggering a heavy update/rebuild on every keystroke. Adding debounce behavior or delaying the update until focus is lost could potentially improve performance.
Can we access your project?
Current Behavior
When entering a value in a Snackbar-related input field in FlutterFlow, the editor becomes noticeably laggy.
It feels like FlutterFlow is recalculating or triggering an update action after every single character typed, instead of waiting until the input is finished or loses focus.
For example, when typing a longer value, each keystroke causes a short delay, which makes the input feel very slow and unresponsive.
Expected Behavior
Typing into the field should be smooth and responsive.
Any expensive recalculation, validation, or update operation should ideally be debounced or triggered after the user finishes typing, rather than after every keystroke.
Steps to Reproduce
Add or configure a Snackbar action/widget.
Click into a value/input field.
Start typing text.
Notice that the UI lags after almost every character.
Reproducible from Blank
Bug Report Code (Required)
no code
Visual documentation
Environment
Additional Information
It looks similar to an onChanged handler triggering a heavy update/rebuild on every keystroke. Adding debounce behavior or delaying the update until focus is lost could potentially improve performance.