What layout component should I use? #468
Unanswered
AnnMarieW
asked this question in
Tips and Tricks
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What layout component should I use?
Grid
if you need columns with different sizes, for example first column takes 1/3 of the space and second column takes another 2/3SimpleGrid
if you need columns with equal sizeGroup
if you want to put several items next to each other horizontallyStack
if you want to put several items next to each other verticallyFlex
if you want to create both horizontal and vertical flexbox layouts. It's more flexible thanGroup
andStack
but requires more configuration.Beta Was this translation helpful? Give feedback.
All reactions