Hello, I could use some help with my project. I'm trying to use 4 different text boxes to make the text for 1 item in a list, it will be for showing "exercise name", "repetitions", "sets" and "weight". I can't seem to do it without getting errors for the values
List indices in App Inventor start from 1; the insert list item uses ListSize, whose value is 0, as the index argument. Change the initialization value of ListSize to 1.
By returning an empty text, you have poisoned the global exercise list variable, making all list blocks fail on it. Text is not a list.
Here is an example of a value procedure to get a list from TinyDB and to insure that it is going to return a list, even if it finds garbage or nothing in TinyDB:
Thanks for the replies, guys. The language thing was just because everything was in portuguese and I had to change to english before the screen capture. I was able to finally fix this problem and will be able to finish my program, sorry for the headache!