Hi so, I have data that comes in as a list of objects. Each item contains a line of text. I want to loop through the list and combine each line of text into a single block of text and then display it in a simple text component.
I can easily set a text component to repeat with each new object but this creates a new “paragraph” for each line of text. I want to combine them all.
More clearly: looping through the data gives me this:
line 1 of text
line 2 of text
line 3 of text etc.
I want to display the data like this:
line 1 of text line 2 of text line 3 of text etc.
Hope that make sense.