美文网首页
flutter ListTile(06)

flutter ListTile(06)

作者: CQ_TYL | 来源:发表于2019-02-19 10:34 被阅读0次

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

 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,//展开是否默认显示选中
    })
效果图

相关文章

网友评论

      本文标题:flutter ListTile(06)

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