So far I am unable to leave from my Text Add Screen. (It gets stuck when I hit the save button). I was able to get success using Local storage, but I need to switch to Stored Variable to so the list can have more than 1 item. I’m sure its a block issue somewhere but I’ve tried to look at blocks from similar projects and am just having difficulty wrapping my head around this.
@huntermclarkn you’d actually need to do something like this to initialise your list, and to make sure that you don’t wipe your list every time the app opens
Okay, I added that section. My problem now is that I enter the text on the add screen. But when I hit save I am not going back to the main screen to view.
first, you have your list population blocks within the logic for if the variable name is null. the issue with that is this means because you give it value at this point it will never be null. Also, then on the first time you assign it a value “empty list” you show exactly that. an empty list and the list is never populated aain because it’s never a null variable and the logic prohibits futher loading.
try this
and then try to remove that extra ‘list’ block. the var name is already a list. you are trying to make a list, a list which may also be producing errors
So I can now get my different Names to show up on the Main Screen, but when i click on individual names I want all their other Pet Info to be unique to that name I click on. Right now, When I click on a name from the list the next screen just shows the last other data that I have entered. Let me know if that makes sense and if you think a Stored Variable will work for that or if I need a cloud variable or something else entirely