DashBootstrapComponents now available for Julia

Hey everyone,

We’ve just made the first release of DashBootstrapComponents for Julia. Many thanks to the Plotly team for assisting, and @rpkyle in particular.

You can install with

pkg> add DashBootstrapComponents

and here’s a simple app to get you started

using Dash, DashBootstrapComponents

app = dash(external_stylesheets=[dbc_themes.BOOTSTRAP])

app.layout = dbc_container(
    dbc_alert("Hello, Bootstrap!", color="success"),
    className="p-5"
)

run_server(app, "0.0.0.0", 8080)

If you try it out, please let us know how you get on and raise issues on our repo if you encounter bugs.

I’m hoping to add some more detailed examples and documentation in the future. If any Julia enthusiasts would like to get involved your help would certainly be appreciated.

5 Likes

Sweet!! Nice work @tcbegley & @rpkyle and thanks for the announcement.

2 Likes