Hi Everyone,
I integrated nprogress in one my apps recently and thought of making it available to everyone.
So here it is: GitHub - snehilvj/dash.nprogress: Loading indication in dash apps using nprogress.js library.
Using it is very simple:
from dash import Dash
external_scripts = ["https://unpkg.com/dash.nprogress@latest/dist/dash.nprogress.js"]
app = Dash(__name__, external_scripts=external_scripts)
That’s it and here’s the output:
Hope you like it.
Snehil