theme.flatly
theme.flatly
flatly
Bootswatch theme
Visit https://bootswatch.com/flatly/ to see Bootswatch's demo of the flatly
theme.
This theme object is a subclass of Theme
and can be further customized with the Theme
methods. Note that customizing Shiny themes requires the libsass package.
Examples
Shinyswatch themes must be provided to the theme
argument of any Shiny UI page function, e.g. page_fluid
or page_sidebar
, or to page_opts
in Shiny Express.
Shiny Express
from shiny.express import ui
import shinyswatch
=shinyswatch.flatly) ui.page_opts(theme
Shiny Core
from shiny import App, render, ui
import shinyswatch
= ui.page_fluid(
app_ui "num", "Number:", min=10, max=100, value=30),
ui.input_slider("slider_val"),
ui.output_text_verbatim(=shinyswatch.theme.darkly,
theme
)
def server(input):
@render.text
def slider_val():
return f"{input.num()}"
= App(app_ui, server) app
Attributes
Name | Type | Description |
---|---|---|
name | Name of the theme. | |
colors | A class containing the color variables used in the theme. |
Returns
Type | Description |
---|---|
htmltools .HTMLDependency |
When called, returns an HTMLDependency of a full Shiny Bootswatch (flatly) theme. |
Examples
Loading...