Built-in layout components for your React app
Row
component is a container that lays out its children in a row. It is a flex container with a flexDirection
of row
by default.
Column
component is a container that lays out its children in a column. It is a flex container with a flexDirection
of column
by default.
Row
and Column
components within a View
to create complex layouts. For example, you can use two Column
components inside a Row
component to create a sidebar and main content area.