Dash bootstrap components progress bar

I’m trying to use dash bootstrap components to make a static progress bar but the code below is rendering a blank page:

html.Div( [
dbc.Progress(value=25, color=“success”)
])

Hey @yuricda96

Did you link a Bootstrap stylesheet? E.g. like

app = dash.Dash(external_stylesheets=[dbc.themes.BOOTSTRAP])

Thats it. Thank you so much!

1 Like