Flutter提供的一个通用头结构,为左中右结构。相应位置可插入组件,可以很方便地应对特定的条目,相比ListTile而言,属性较少。

相关属性

GridTile

GridTileBar的基本表现如下

【value】 : 条目对象 【T】
【leading】: 左侧组件 【Widget】
【trailing】: 尾组件 【Widget】
【title】: 中间上组件 【Widget】
【subtitle】: 中间下组件 【Widget】
【backgroundColor】: 背景色 【Color】
image.png

  1. import 'package:flutter/material.dart';
  2. class CustomGridTileBar extends StatelessWidget {
  3. @override
  4. Widget build(BuildContext context) {
  5. return GridTileBar(
  6. backgroundColor: Colors.blue.withAlpha(120),
  7. trailing: Icon(
  8. Icons.star,
  9. color: Colors.red,
  10. ),
  11. leading: CircleAvatar(
  12. backgroundImage: AssetImage("assets/images/wy_200x300.jpg"),
  13. ),
  14. title: Text("百里·巫缨"),
  15. subtitle: Text("倾国必倾城"),
  16. );
  17. }
  18. }