I have something like this in my layout.
import dash
import dash_html_components as html
import dash_core_components as dcc
import dash_bootstrap_components as dbc
app = dash.Dash()
app.layout = html.Div([
html.H1('Progress bar'),
dbc.Progress(id="progress", value=50, striped=True, animated=True)
])
app.run_server(debug=True, port=9995)
I expect a progress bar at a value of 50% showing up in my dash app. But nothing shows up. Any idea why?
Instead of
app = dash.Dash()
Use
app = dash.Dash(external_stylesheets=[dbc.themes.BOOTSTRAP])
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With