How to add array with dictionaries in it to ItemList

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Lazulily

I am making a database type thing and each entry is stored as a dictionary inside of an array, I would like the items of each dictionary to be added as different lines in an ItemList.
How would I do this?

:bust_in_silhouette: Reply From: dacess123

Something like this maybe:

for _item in _dictionary.values():
     _itemList.add_item(_item)

Should do it…