hello…
im trying to create a to do list app that save list with each login, but im not sure how to use cloud variable in order to get the data back for each user indivually.
thanks
hello…
im trying to create a to do list app that save list with each login, but im not sure how to use cloud variable in order to get the data back for each user indivually.
thanks
Please show your code as screen copy or project link and explain what have you tried so far and where you’ve got stuck.
https://x.thunkable.com/copy/f535f1f36545f23ad936d5055d83ca51
this is the project.
as you can see, im able to store users and their login infos and so on.
but i dont know how to link each account with their own list, so each written list will be deleted if the user log out.
I had a quick look into the project.
The condition in this block has no effect
However,
You are saving the green userId block
which is good but not using it anywhere therefore this is my suggestion:
stored variable
.I made the following changes in the app
Added a new variable
in the open event of LIST1 screen I added
In the ADD button, I changed
I also added a table to the project
Using these changes the app now saves the list of each user to a different row in the table. I made this as a local table but you need to connect it to something like Google sheet to see the effect.
thanks a lot, ill try to use this method!!!