flutter的图片文字卡片代码片
Easul Lv4

图片文字卡片

折叠代码块DART 复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Card(
child: Column(
children: <Widget>[
AspectRatio(
aspectRatio: 16 / 9,
child: ClipRRect(
borderRadius: const BorderRadius.only(
topLeft: Radius.circular(4.0),
topRight: Radius.circular(4.0),
),
child: Image.network(
'图片链接',
fit: BoxFit.cover,
),
),
),
ListTile(
leading: CircleAvatar(
backgroundImage: NetworkImage(
"图片链接",
),
),
title: Text("标题"),
subtitle: Text("子标题"),
),
Container(
padding: const EdgeInsets.all(16.0),
child: Text(
"描述信息",
maxLines: 4,
overflow: TextOverflow.ellipsis,
),
)
],
),
)
 评论
来发评论吧~
Powered By Valine
v1.5.2