I'm trying to use an external CSS file but it is not working. Here is the code snip
from shiny import include_css
css_path = www_dir = Path(file).parent / "www" / "bootstrap.min.css"
app_ui = ui.page_navbar(
ui.nav(
"Navbar 1",
shinyswatch.theme.flatly(),
ui.include_css("bootstrap.min.css"),
this giving the following error
from shiny import include_css
ImportError: cannot import name 'include_css' from 'shiny' (C:\Users\nimalir\Anaconda3\envs\shinyapp\lib\site-packages\shiny_init_.py)
Please help me to solve this problem explain me how to use external CSS and HTML file in shiny for python.
Thank you