I’m trying to change the value of an input field on the next screen, but it doesn’t seem to be working. Is there a specific rule for it to function properly?
Hi @nicoledalo,
I don’t think you can change the input value on the next screen. I believe that when you launch the app, the next screen doesn’t exist yet (internally in the code its instance is being created when you visit it first time). However I might be wrong - in-depth knowledge of React is required here.
As a workaround, you can store the value in a helper database property (e.g. Users → YourProp), set it on the previous screen (update logged-inuser) and pre-populate the input from this property on the next screen.
Best,
Victor.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.