AppBarTitle
Puts its children in the title section of the AppBar (or any layout that supports it).
@solara.component
def AppBarTitle(children=[]):
...
This component does not need to be a direct child of the AppBar, it can be at any level in your component tree.
Example
import solara
@solara.component
def Page():
with solara.AppBarTitle():
solara.Text("Hi there")
solara.Button("Click me", outlined=True, classes=["mx-2"])
Hi there
Live output