Py.Cafe

iisakkirotko/

appbar-title-logo-example

Simple Dashboard Example Using Solara Library

DocsPricing
  • github-mark/
  • app.py
  • requirements.txt
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import solara


@solara.component
def Page():
    with solara.AppBar():
        with solara.AppBarTitle():
            with solara.Row(style={"background-color": "transparent", "align-items": "center"}):
                solara.HTML(tag="img", attributes={"src": "https://picsum.photos/400/200", "style": "height: 40px"})
                solara.Text("Title of Dashboard")
        solara.v.Spacer()
        solara.Button(label="Exit", on_click = lambda: None)
    solara.Markdown("HELLLOOO")