Passing Data Between Screens in AppMaster.io Beta Mobile Version

Hello everyone,

I am working on a mobile app in the new beta version of AppMaster.io and facing an issue when trying to pass data from one screen to another.

What I Tried :

  • I stored the data in a global variable (e.g., a string or object).
  • Then, I tried accessing this global variable on another screen.
  • But the data is not being retained or accessible on the next screen.

My Questions

  1. Is there a specific way to pass data between screens in the new beta version?
  2. Do I need to handle global variables differently?
  3. If multiple users are using the app at the same time, is there a chance of data conflicts when using global variables? How can I avoid this issue?
  4. Are there best practices or alternative solutions to achieve this?

Any help or guidance would be appreciated!

Thanks in advance!

Hi everyone, just checking in on this.

Any insights, suggestions, or possible workarounds would be greatly appreciated.
I’d really value your input if you’ve encountered similar behavior in the beta version.
Looking forward to your guidance—thanks in advance!

Global Variables should be best solution for your case.
If you save it at any screen - it should be available everywhere in your application. Please try to check your process again and share screens of logs and business processes if something goes wrong (don’t forget to mention platform - iOS or Android).

Global Variable is local variable for specific device (Global means that variable is not limited with business process and available in all processes of your application). So multiple users use it independently without any chance of data conflict.

Thank you, for sharing the information.