2017-08-09 15:45:08 +08:00
---
category: Components
type: Data Display
2018-05-21 21:52:18 +08:00
title: List
2017-08-09 15:45:08 +08:00
cols: 1
---
Simple List.
## When To Use
A list can be used to display content related to a single subject. The content can consist of multiple elements of varying type and size.
## API
### List
2019-07-11 14:14:33 +08:00
| Property | Description | Type | Default | Version |
| --- | --- | --- | --- | --- |
| bordered | Toggles rendering of the border around the list | boolean | false | |
| footer | List footer renderer | string\|ReactNode | - | |
2020-03-04 21:22:39 +08:00
| grid | The grid type of list. You can set grid to something like {gutter: 16, column: 4} | [object ](#List-grid-props ) | - | |
2019-07-11 14:14:33 +08:00
| header | List header renderer | string\|ReactNode | - | |
| itemLayout | The layout of list, default is `horizontal` , If a vertical list is desired, set the itemLayout property to `vertical` | string | - | |
2019-11-20 20:31:43 +08:00
| rowKey | Item's unique key, could be a string or function that returns a string | string\|Function(record):string | `key` | |
2020-04-17 17:56:42 +08:00
| loading | Shows a loading indicator while the contents of the list are being fetched | boolean\|[SpinProps ](/components/spin/#API ) ([more](https://github.com/ant-design/ant-design/issues/8659)) | false | |
2019-07-11 14:14:33 +08:00
| loadMore | Shows a load more content | string\|ReactNode | - | |
2019-11-20 20:31:43 +08:00
| locale | i18n text including empty text | object | emptyText: 'No Data' < br > | |
2020-04-17 17:56:42 +08:00
| pagination | Pagination [config ](/components/pagination/ ), hide it by setting it to false | boolean \| object | false | |
2020-01-17 18:23:58 +08:00
| size | Size of list | `default` \| `large` \| `small` | `default` | |
2019-07-11 14:14:33 +08:00
| split | Toggles rendering of the split under the list item | boolean | true | |
2019-11-20 20:31:43 +08:00
| dataSource | dataSource array for list | any[] | - | |
| renderItem | customize list item when using `dataSource` | `item => ReactNode` | - | |
2017-08-21 21:14:20 +08:00
2018-05-21 21:52:18 +08:00
### pagination
Properties for pagination.
2019-05-07 14:57:32 +08:00
| Property | Description | Type | Default |
| -------- | ------------------------------------ | --------------------------- | -------- |
2020-01-17 17:23:48 +08:00
| position | specify the position of `Pagination` | `top` \| `bottom` \| `both` | `bottom` |
2018-05-21 21:52:18 +08:00
More about pagination, please check [`Pagination` ](/components/pagination/ ).
2017-08-21 21:14:20 +08:00
### List grid props
2017-10-25 10:27:38 +08:00
2020-04-27 16:59:33 +08:00
| Property | Description | Type | Default | Version |
| -------- | ------------------------ | ------ | ------- | ------- |
| column | column of grid | number | - | |
| gutter | spacing between grid | number | 0 | |
| xs | `<576px` column of grid | number | - | |
| sm | `≥576px` column of grid | number | - | |
| md | `≥768px` column of grid | number | - | |
| lg | `≥992px` column of grid | number | - | |
| xl | `≥1200px` column of grid | number | - | |
| xxl | `≥1600px` column of grid | number | - | |
2017-08-09 15:45:08 +08:00
### List.Item
2019-07-11 14:14:33 +08:00
| Property | Description | Type | Default | Version |
| --- | --- | --- | --- | --- |
| actions | The actions content of list item. If `itemLayout` is `vertical` , shows the content on bottom, otherwise shows content on the far right. | Array< ReactNode > | - | |
| extra | The extra content of list item. If `itemLayout` is `vertical` , shows the content on right, otherwise shows content on the far right. | string\|ReactNode | - | |
2017-08-09 15:45:08 +08:00
### List.Item.Meta
2019-07-11 14:14:33 +08:00
| Property | Description | Type | Default | Version |
| ----------- | ---------------------------- | ----------------- | ------- | ------- |
| avatar | The avatar of list item | ReactNode | - | |
| description | The description of list item | string\|ReactNode | - | |
| title | The title of list item | string\|ReactNode | - | |