12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- """Stack components."""
- from __future__ import annotations
- from reflex.components.component import Component
- from reflex.vars.base import Var
- from ..base import LiteralAlign, LiteralSpacing
- from .flex import Flex, LiteralFlexDirection
- class Stack(Flex):
- """A stack component."""
- # The spacing between each stack item.
- spacing: Var[LiteralSpacing] = Var.create("3")
- # The alignment of the stack items.
- align: Var[LiteralAlign] = Var.create("start")
- @classmethod
- def create(
- cls,
- *children,
- **props,
- ) -> Component:
- """Create a new instance of the component.
- Args:
- *children: The children of the stack.
- **props: The properties of the stack.
- Returns:
- The stack component.
- """
- # Apply the default classname
- given_class_name = props.pop("class_name", [])
- if not isinstance(given_class_name, list):
- given_class_name = [given_class_name]
- props["class_name"] = ["rx-Stack", *given_class_name]
- return super().create(
- *children,
- **props,
- )
- class VStack(Stack):
- """A vertical stack component."""
- # The direction of the stack.
- direction: Var[LiteralFlexDirection] = Var.create("column")
- class HStack(Stack):
- """A horizontal stack component."""
- # The direction of the stack.
- direction: Var[LiteralFlexDirection] = Var.create("row")
- stack = Stack.create
- hstack = HStack.create
- vstack = VStack.create
|