Flutter之Divider,VerticalDivider组件

/**
const Divider({
Key? key,
this.height,//分割线区域的高度,并非分割线的高度
this.thickness,//分割线真正的高度
this.indent,//起点缩进距离
this.endIndent,//终点缩进距离
this.color,//分割线颜色
})

如果想设置真实的分割线高度,需要把height和thickness设置为一样.

const VerticalDivider({
Key? key,
this.width,//分割线区域的宽度,并非分割线的宽度
this.thickness,//分割线真正的宽度
this.indent,
this.endIndent,
this.color,
})
*/

你可能感兴趣的:(Flutter之Divider,VerticalDivider组件)