编程语言
首页 > 编程语言> > AspectRatio图片的宽高比、Card 卡片组件

AspectRatio图片的宽高比、Card 卡片组件

作者:互联网

一、AspectRatio 组件 AspectRatio 的作用是根据设置调整子元素 child 的宽高比。 AspectRatio 首先会在布局限制条件允许的范围内尽可能的扩展,widget 的高度是由宽度和比率决定的,类似于 BoxFit 中的 contain,按照固定比率去尽量占满区域。如果在满足所有限制条件过后无法找到一个可行的尺寸,AspectRatio 最终将会去优先适应布局限制条件,而忽略所设置的比率。   aspectRatio   宽高比,最终可能不会根据这个值去布局,具体则要看综合因素,外层是否允许按照这种比率进行布局,这只是一个参考值 child  子组件    二、Flutter Card 组件 Card 是卡片组件块,内容可以由大多数类型的 Widget 构成,Card 具有圆角和阴影,这让它看起来有立体感。 margin  外边距 child  子组件 Shape  Card 的阴影效果,默认的阴影效果为圆角的长方形边。   案例

 

 

 案例代码

    return ListView(

  children: listData.map((val) {
return Card(
child: Column(
children: <Widget>[
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()
);

标签:val,child,组件,宽高比,AspectRatio,Card
来源: https://www.cnblogs.com/zhaofeis/p/12335391.html