I'm facing an issue in my FlutterFlow app. I created an app state variable message to display an error message fetched from my backend. The user has already entered all the necessary details and clicked the submit button, which should trigger a popup with the error message. Iām using a bottom sheet component to show the popup.
In run mode, everything works as expected. The condition is satisfied, and the popup appears correctly with the error message.
However, after building the APK, the error message and popup do not display.
The same issue occurs in the web version: when clicking the button, if the user is new, the popup shows up, but no error message is displayed.
During debug mode, the app state variable message is empty even though the backend response is being fetched correctly.
Has anyone encountered this issue? Any suggestions on why the error message isn't displaying in the built APK, but works fine in run mode?