Card
A Card is a container for UI elements, offering a background and space to place components like buttons, inputs, and text within a CardContainer.
class Card
Constructor
# Basic example
card = container.create_card() # Default type of "columns"
# Custom properties
container = tab.create_container(
type="columns",
height: "auto",
width: "auto",
vertical_align: "center",
horizontal_align: "center",
gap: 4,
disallow_shrink=True
)
# Rows example
container = tab.create_container(type="rows")Parameter
Description
Methods
Method
Description
Examples



Last updated