Flexbox model
The flexbox model is a one-dimensional layout model that allows you to align items in a container. It is a powerful layout tool that allows you to create complex layouts with ease. We’ve prepared a set of components that make it easy to use the flexbox model in your app:Row
TheRow 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
TheColumn component is a container that lays out its children in a column. It is a flex container with a flexDirection of column by default.
Combining components
You can combine theRow 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.