@shopify/polaris
Version:
Shopify’s admin product component library
185 lines (134 loc) • 5.13 kB
Markdown
---
name: Stack
category: Structure
keywords:
- rows
- vertical centering
- horizontal row of components
- flexible items
- flexbox
- row of components
- stack spacing
- vertical centering
- fill available space
- fill space
- equal width
- right-aligned stack
- stack layout
- layout
---
# Stack
Use to lay out a horizontal row of components or to achieve no-fuss vertical
centering. A stack is made of flexible items that wrap each of the stack’s
children. Options provide control of the wrapping, spacing, and relative size of the items in the stack.
---
## Best practices
Stacks should:
- Be used for small-scale layout tasks when you want a row of components that should wrap on small screen widths
- Be used to vertically center two elements
- Not be used for complex or unique arrangements of components
- Not be used for large-scale page layout
---
## Examples
### Default behavior
Use to quickly lay out a horizontal row of components and maintain their relative sizes. On small screens, children rows wrap down to additional rows as needed.
```jsx
<Stack>
<Badge>Paid</Badge>
<Badge>Processing</Badge>
<Badge>Fulfilled</Badge>
<Badge>Completed</Badge>
</Stack>
```
### Non-wrapping Stacks
Use to create a stack where the children will not wrap to new rows on small screens. As noted above, the wrap option defaults to true. This means you must explicitly set it to false to turn it off.
```jsx
<Stack wrap={false}>
<Badge>Paid</Badge>
<Badge>Processing</Badge>
<Badge>Fulfilled</Badge>
<Badge>Completed</Badge>
</Stack>
```
### Spacing options
Use to control spacing of items in a stack in standard increments. Use tight for less spacing, loose for more spacing, or none to remove normal spacing altogether.
```jsx
<Stack spacing="loose">
<Badge>Paid</Badge>
<Badge>Fulfilled</Badge>
</Stack>
```
### Vertical centering with a stack
Use to vertically center a set of items that have different heights.
```jsx
<Stack alignment="center">
<Heading>
Order
<br />
#1136
<br />
was paid
</Heading>
<Badge>Paid</Badge>
<Badge>Fulfilled</Badge>
</Stack>
```
### Fill available space proportionally
Use to have the stack’s items fill the horizontal space in the container but maintain their relative proportions.
```jsx
<Stack distribution="fill">
<Heading>Order #1136</Heading>
<Badge>Paid</Badge>
<Badge>Fulfilled</Badge>
</Stack>
```
### Stack where items fill space evenly
Use to have the stack’s items fill the horizontal space in the container and be equal widths, regardless of their content.
```jsx
<Stack distribution="fillEvenly">
<Heading>Order #1136</Heading>
<Badge>Paid</Badge>
<Badge>Fulfilled</Badge>
</Stack>
```
### Stack where a single item fills the remaining space
Use for aligning buttons or secondary content to the right edge of another element, allowing it to wrap below on small screens.
```jsx
<Stack>
<Stack.Item fill>
<Heading>Order #1136</Heading>
</Stack.Item>
<Stack.Item>
<Badge>Paid</Badge>
</Stack.Item>
<Stack.Item>
<Badge>Fulfilled</Badge>
</Stack.Item>
</Stack>
```
---
## Stack item
The stack component will treat multiple elements wrapped in a stack item component as one item. By default, each individual element is treated as one stack item. Use the fill prop on a single stack item component to make it fill the rest of the available horizontal space. See the “Stack where a single item fills the remaining space” example.
### Stack item properties
| Prop | Type | Description | Default |
| -------- | ------- | -------------------------------------------------------------- | ------- |
| fill | boolean | Fill the available horizontal space in the stack with the item | false |
| children | any | Elements to display inside stack item | |
---
## Related components
- To create the large-scale structure of pages, [use the layout component](https://polaris.shopify.com/components/structure/layout)
---
## Accessibility
<!-- content-for: android -->
See Material Design and development documentation about accessibility for Android:
- [Accessible design on Android](https://material.io/design/usability/accessibility.html)
- [Accessible development on Android](https://developer.android.com/guide/topics/ui/accessibility/)
<!-- /content-for -->
<!-- content-for: ios -->
See Apple’s Human Interface Guidelines and API documentation about accessibility for iOS:
- [Accessible design on iOS](https://developer.apple.com/design/human-interface-guidelines/ios/app-architecture/accessibility/)
- [Accessible development on iOS](https://developer.apple.com/accessibility/ios/)
<!-- /content-for -->
<!-- content-for: web -->
The stack component is for alignment only and doesn’t provide any structural information for assistive technologies. To convey relationships between specific items, consider using the [list component](https://polaris.shopify.com/components/lists-and-tables/list).
<!-- /content-for -->