Box
Overview¶
Box is a content component which acts as a container to group children components and styling them.
Examples¶
import mesop as me
def load(e: me.LoadEvent):
me.set_theme_mode("system")
@me.page(
on_load=load,
security_policy=me.SecurityPolicy(
allowed_iframe_parents=["https://google.github.io"]
),
path="/box",
)
def app():
with me.box(style=me.Style(background="red", padding=me.Padding.all(16))):
with me.box(
style=me.Style(
background="green",
height=50,
margin=me.Margin.symmetric(vertical=24, horizontal=12),
border=me.Border.symmetric(
horizontal=me.BorderSide(width=2, color="pink", style="solid"),
vertical=me.BorderSide(width=2, color="orange", style="solid"),
),
)
):
me.text(text="hi1")
me.text(text="hi2")
with me.box(
style=me.Style(
background="blue",
height=50,
margin=me.Margin.all(16),
border=me.Border.all(
me.BorderSide(width=2, color="yellow", style="dotted")
),
border_radius=10,
)
):
me.text(text="Example with all sides bordered")
with me.box(
style=me.Style(
background="purple",
height=50,
margin=me.Margin.symmetric(vertical=24, horizontal=12),
border=me.Border.symmetric(
vertical=me.BorderSide(width=4, color="white", style="double")
),
)
):
me.text(text="Example with top and bottom borders")
with me.box(
style=me.Style(
background="cyan",
height=50,
margin=me.Margin.symmetric(vertical=24, horizontal=12),
border=me.Border.symmetric(
horizontal=me.BorderSide(width=2, color="black", style="groove")
),
)
):
me.text(text="Example with left and right borders")
API¶
box
¶
Creates a box component.
PARAMETER | DESCRIPTION |
---|---|
style |
Style to apply to component. Follows HTML Element inline style API.
TYPE:
|
on_click |
The callback function that is called when the box is clicked. It receives a ClickEvent as its only argument.
TYPE:
|
classes |
CSS classes.
TYPE:
|
key |
The component key.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Any
|
The created box component. |