Cell
可以单独使用,也可以与 Cell.Group
搭配使用,Cell.Group
可以为 Cell
提供上下外边框。
<Cell title="单元格">内容</Cell>
<Cell title="单元格" brief="描述信息">内容</Cell>
通过 size
属性可以控制单元格的大小。
<Cell title="单元格">内容</Cell>
<Cell title="单元格" brief="描述信息" size="large">内容</Cell>
通过 rightIcon
属性在标题右侧展示箭头,并且可以通过不同图标控制箭头方向。
<Cell title="单元格" isLink />
<Cell title="单元格" isLink children="内容" />
<Cell title="单元格" isLink arrowDirection="down" children="内容" />
通过 Cell.Group
的 title
属性可以指定分组标题。
<Cell.Group title="分组 1">
<Cell title="单元格">内容</Cell>
</Cell.Group>
<Cell.Group title="分组 2">
<Cell title="单元格">内容</Cell>
</Cell.Group>
通过 align
属性可以改变 Cell
的左右内容的对齐方式。
<Cell title="单元格" brief="align start" size="large" align="start">内容</Cell>
<Cell title="单元格" brief="align center" size="large" align="center">内容</Cell>
<Cell title="单元格" brief="align end" size="large" align="end">内容</Cell>