Im currently working with a dictionary of items formatted like this
Key = name
values = timestamp, amount
I want to display on screen a list of timers (along with the other info) in ascending order of completion on the screen.
example:
Kale x10 1hr 5min 30 sec
Blueberry x5 2hr 10 min 55 sec
What component would you guys recomend?
Previously, i was just using a "list view" and displaying all of them. But this cannot be updated in the way i need it to be.
The values in a list view are static. How can i display the timers counting down in real time?
I looked at your "christmas countdown" example.
And i see how you did it there.
But in this case, we don't know how many "entries" there will be; so i was hoping to avoid having to create an label manually for everything that i want to show on screen.
The live countdown works beautifully on your app though.