flutter ListTile(06)

2019-02-19  本文已影响0人  CQ_TYL

一个固定高度的行,通常包含一些文本,以及一个行前或行尾图标。
构造方法:

 const ListTile({
    Key key,
    this.leading,//左侧widget
    this.title,//标题
    this.subtitle,//副标题
    this.trailing,//右侧widget
    this.isThreeLine = false,//是否默认3行高度,subtitle不为空时才能使用
    this.dense,//设置为true后字体变小
    this.contentPadding,//内边距
    this.enabled = true,//能否被点击
    this.onTap,//点击事件
    this.onLongPress,//长按事件
    this.selected = false,//展开是否默认显示选中
    })
效果图
上一篇 下一篇

猜你喜欢

热点阅读