How do I make my app so that it opens on whatever page the user left it. each time
On every screen open, you can have a variable that saves the name of the screen it is on. Then on your very first screen that opens when you launch the app, you make it so that on screen start, navigate to the screen name saved in the variable.
Can you show how the blocks should be setup
I’ll write out the pseudo-code of what it’ll look like. If you are lost in a particular area, send a screenshot of where you are and I can help guide you through it.
In the first screen, initialize a stored variable called “last screen”. Then when the screen starts, if “last screen” is not null, navigate to stored variable “last screen”.
In every other screen, when the screen opens, set stored variable “last screen” to a text block with the name of the current screen as the string value.