flutter Card卡片列表组件
一个 Material Design 卡片。拥有一个圆角和阴影
import 'package:flutter/material.dart'; import './model/post.dart'; class CardDemo extends StatefulWidget { @override _CardDemoState createState() => _CardDemoState(); } class _CardDemoState extends State<CardDemo> { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('CardDemo'), elevation: 0.0, ), body: Container( padding: EdgeInsets.all(16.0), child: ListView( children: posts.map((post) { return Card( child: Column( children: <Widget>[ AspectRatio( aspectRatio: 16/9, child: ClipRRect( borderRadius: BorderRadius.only( topLeft: Radius.circular(4.0), topRight: Radius.circular(4.0), ), child: Image.network( post.imageUrl, fit: BoxFit.cover, ), ), ), ListTile( leading: CircleAvatar( backgroundImage: NetworkImage(post.imageUrl), ), title: Text(post.title), subtitle: Text(post.author), ), Container( padding: EdgeInsets.all(16.0), child: Text(post.description, maxLines: 2, overflow: TextOverflow.ellipsis,), ), ButtonTheme.bar( child: ButtonBar( children: <Widget>[ FlatButton( child: Text('Like'.toUpperCase()), onPressed: () {}, ), FlatButton( child: Text('Read'.toUpperCase()), onPressed: () {}, ), ], ), ), ], ), ); }).toList(), ), ) ); } }
效果:
最后,关注【码上加油站】微信公众号后,有疑惑有问题想加油的小伙伴可以码上加入社群,让我们一起码上加油吧!!!
posted on 2019-08-12 21:55 LoaderMan 阅读(1433) 评论(0) 编辑 收藏 举报