In my app I have 3 screens, one of them is the home page, the second one is the create task page, and the third is the view task page. I want to display the text from the second page to the third page. I can’t really do that because the components are in separate pages so I can’t display the text of the input on the label in the two different pages.
1 Like
Every screen has its own objects. Anyway, you may store text from imput from a screen to an app`s var, then display it to another screen using that var. (initialized variables are at least app wide)
1 Like