I have a list of dict each with a progress
key and int
value.
How can I use this to display progress bar on each row on a progress
column ?
I have a list of dict each with a progress
key and int
value.
How can I use this to display progress bar on each row on a progress
column ?
Hi, you can use:
Or
Cheers
Yeah but i’m unsure how I would display in inside a st.table / st.dataframe.
setting some_dict['progress'] = st.progress(99)
will just write it before the table / dataframe itself and the dataframe column just contains a Boolean
value. But i’m trying to achieve where each row has its own progress status.
An example would be a table for download status. With all files displayed and each row having its own progress bar.