List
Hiển thị dạng dữ liệu dạng danh sách
Properties
List
| Name | Type | Default | Description |
|---|---|---|---|
| dataSource | array | Mảng các giá trị cần hiển thị. | |
| loading | boolean | Hiển thị loading | |
| renderItem | function | Hàm render các giá trị trong dataSource. | |
| divider | boolean | Ngăn cách các item | |
| children | React.ReactNode |
List.Item
| Name | Type | Default | Description |
|---|---|---|---|
| visibilityToggle | boolean | Hiển thị icon hiện hoặc ẩn password |
List.Item
| Name | Type | Default | Description |
|---|---|---|---|
| visibilityToggle | boolean | Hiển thị icon hiện hoặc ẩn password |
Example
import React from "react";
import { Page, List, Icon, Button } from "zmp-ui";
const { Item } = List;
export default function HomePage(props) {
return (
<List>
} />
}
suffix={}
/>
}
subTitle="subtitle"
/>
} />
}
/>
</List>
);
}