I have been using a spinner component while multiple files get uploaded to the dcc.Upload component - but I want to modify it to a progress bar to show the upload progress. How can I achieve the same?
dcc.Upload(
id="uploader",
children=html.Div(
[
"Drag and Drop or ",
html.A("Select Files"),
]
),
disabled=step.processed,
style={
"width": "100%",
"height": "60px",
"borderWidth": "1px",
"borderStyle": "dashed",
"textAlign": "center",
},
# Allow multiple files to be uploaded
multiple=True,
),
#hourglass("upload"),