AspectRatio图片的宽高比、Card 卡片组件
2021-06-05 04:02
标签:com work oval listt 设置 nbsp network spec 组件 案例代码 return ListView( AspectRatio图片的宽高比、Card 卡片组件 标签:com work oval listt 设置 nbsp network spec 组件 原文地址:https://www.cnblogs.com/zhaofeis/p/12335391.html children: listData.map((val) {
return Card(
child: Column(
children:
AspectRatio(
aspectRatio: 16 / 9,
child: Image.network(val[‘imageUrl‘], fit: BoxFit.cover,),
),
ListTile(
leading: ClipOval(
child: Image.network(val[‘imageUrl‘], height: 40, width: 40, fit: BoxFit.cover,),
),
title: Text(val[‘title‘],
overflow: TextOverflow.ellipsis,
maxLines: 1,),
subtitle: Text(val[‘author‘],
overflow: TextOverflow.ellipsis,
maxLines: 2,),
)
],
),
);
}).toList()
);
上一篇:二狗子 、初恋及HTTPS
下一篇:jQuery---基本语法
文章标题:AspectRatio图片的宽高比、Card 卡片组件
文章链接:http://soscw.com/index.php/essay/90700.html