Back to Reflex

Center

docs/library/layout/center.md

0.9.2a2322 B
Original Source
python
import reflex as rx

Center

Center is a component that centers its children within itself. It is based on the flex component and therefore inherits all of its props.

python
rx.center(
    rx.text("Hello World!"),
    border_radius="15px",
    border_width="thick",
    width="50%",
)