Hi all, i’m new to thunkable so sorry if i missed something from docs.
I’ve a firebase realtime db which stores some basic infos about users, categories and devices.
My db looks like this
– root
---- users
----- idUser0
------- nameFull = “User Name0”
------- nameAlias = “User0”
----- idUser1
------- nameFull = “User Name1”
------- nameAlias = “User2”
---- categories
----- idCategory0
------- name = “Category 1”
------- description = “Description for category 1”
----- idCategory1
------- name = “Category 1”
------- description = “Description for category 1”
---- devices
----- idDevice0
------- brand = “Brand”
------- model = “Model”
------- name = “Personal Phone”
------- carrier = “No Carrier”
------- user = /users/idUser0
----- idDevice1
------- brand = “Brand 2”
------- model = “Model 2”
------- name = “Work Phone”
------- carrier = “Business carrier”
------- user = /users/idUser1
In the screen “ScreenMain” i placed a block on screen open which gets /users, if error is true i show the error details in an alert, so far i’m fine.
If i don’t have error, i’ll get a json object as reply inside value block, how can i show all the nested items (isUser0 and idUser1) inside a listviewer?
Thanks in advance to all