颤振卡高度损坏。 在列表顶部是正常的,但在列表底部却很奇怪。
FutureBuilder<List<CalData>>(
future: fetchNews(),
builder: (context, snapshot) {
if (snapshot.hasData) {
List<CalData> posts = snapshot.data;
return new Column(
children: posts
.map((post) => Card(
elevation: 1,
child: Container(
padding: EdgeInsets.all(10),
child: Row(