Hi, Thunkable. I seem to be having an issue with lists on my application. The application has one screen with one label in the center. I think that the following code should set the label to say “3”, but the application just freezes at this point, and refuses to do anything else.
First, you are initializing the variable at numerical type.
And you are treating it as a list - i.e, you are inserting an item in a numerical variable; not in a list.
Second, you are setting the label’s text to a list. Labels can have text source only, not list(s).
So, in order to solve this, you just need to do this -
(This will set the label’s text to a number, i.e. 3.)
Second, you are setting the label’s text to a list. Labels can have text source only, not list(s).
You are mistaken, Labels.text may take as a source list and display it on the screen. This is possible due to the fact that the list is converted to a string data type. For this reason, the text property of any component will be output and the number, and logical values without problems.