美文网首页flutter
Flutter之Divider,VerticalDivider组

Flutter之Divider,VerticalDivider组

作者: 习惯了_就好 | 来源:发表于2021-03-31 09:21 被阅读0次

/**
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组

    本文链接:https://www.haomeiwen.com/subject/kpwbhltx.html