Flutter---ListTile列表项组件

概述:ListTile​​ 是 Flutter 中一个非常常用的 Material Design 列表项组件,专门用于构建列表中的每一项。

基本属性:

Dart 复制代码
ListTile(
  leading: Icon(Icons.person),        // 前导图标
  title: Text('用户名'),               // 主标题
  subtitle: Text('用户昵称'),          // 副标题
  trailing: Icon(Icons.arrow_forward), // 后置图标
  onTap: () {},                       // 点击事件
)

完整属性列表

Dart 复制代码
ListTile(
  // 1. 内容区域
  leading: Widget,                    // 左侧部件
  title: Widget,                      // 主标题
  subtitle: Widget,                   // 副标题
  trailing: Widget,                   // 右侧部件
  
  // 2. 交互相关
  onTap: () => void,                  // 点击回调
  onLongPress: () => void,            // 长按回调
  onFocusChange: (bool) => void,      // 焦点变化
  onTap: () => void,                  // 点击回调
  mouseCursor: MouseCursor,           // 鼠标样式
  enabled: bool,                      // 是否启用
  
  // 3. 样式相关
  style: ListTileStyle,               // 样式类型
  selected: bool,                     // 选中状态
  selectedColor: Color,               // 选中颜色
  iconColor: Color,                   // 图标颜色
  textColor: Color,                   // 文字颜色
  contentPadding: EdgeInsets,         // 内边距
  dense: bool,                        // 紧凑模式
  visualDensity: VisualDensity,       // 视觉密度
  shape: ShapeBorder,                 // 形状
  tileColor: Color,                   // 背景色
  selectedTileColor: Color,           // 选中背景色
  focusColor: Color,                  // 焦点颜色
  hoverColor: Color,                  // 悬停颜色
  splashColor: Color,                 // 水波纹颜色
  horizontalTitleGap: double,         // 标题水平间距
  minVerticalPadding: double,         // 最小垂直内边距
  minLeadingWidth: double,            // 最小前导宽度
  
  // 4. 辅助功能
  autofocus: bool,                    // 自动聚焦
  focusNode: FocusNode,               // 焦点节点
)

使用例子

Dart 复制代码
//========================修改性别的弹窗========================================//
  void changeGenderDialog() {
    showDialog(
      context: context,
      builder: (context) {
        return Dialog(
          backgroundColor: Colors.white, //背景颜色
          shape: RoundedRectangleBorder( //形状配置
            borderRadius: BorderRadius.circular(26),
          ),
          child: Container(
            width: 250, // 自定义宽度
            padding: EdgeInsets.all(16), // 内边距
            child: Column(
              mainAxisSize: MainAxisSize.min,
              children: [

                // 男性选项
                ListTile(
                  dense: true, //紧凑模式
                  title: Text("男", style: TextStyle(fontSize: 16, color: Color(0xFF3D3D3D))),
                  trailing: _selectedGender == "男" //只有选中"男",才显示男性行尾部图标(三元运算符)
                      ? Image.asset("assets/images/cherry.png", width: 24, height: 24)
                      : null,
                  //点击事件
                  onTap: () {
                    Navigator.pop(context);//关闭对话框
                    setState(() {
                      _selectedGender = "男"; //更新性别变量值
                    });
                    widget.onGenderChanged("男");// 调用回调函数,传值回主页
                  },
                ),

                // 女性选项
                ListTile(
                  dense: true,//紧凑模式
                  title: Text("女", style: TextStyle(fontSize: 16, color: Color(0xFF3D3D3D))),
                  trailing: _selectedGender == "女" //只有选中"女",才显示女性行尾部图标
                      ? Image.asset("assets/images/cherry.png", width: 24, height: 24)
                      : null,
                  onTap: () {
                    Navigator.pop(context);
                    setState(() {
                      _selectedGender = "女";  //更新性别变量值
                    });
                    widget.onGenderChanged("女");// 调用回调函数,传值回主页
                  },
                ),
              ],
            ),
          ),
        );
      },
    );
  }
相关推荐
ljt27249606611 天前
Flutter笔记--事件处理
笔记·flutter
Feng-licong2 天前
告别手写 UI:当 Google Stitch 遇上 Flutter,2026 年的“Vibe Coding”开发流
flutter·ui
不爱吃糖的程序媛2 天前
Flutter OH Engine构建指导
flutter
小蜜蜂嗡嗡2 天前
flutter实现付费解锁内容的遮挡
android·flutter
tangweiguo030519872 天前
Flutter iOS 调试利器:idevicesyslog 从入门到精通
flutter
tangweiguo030519872 天前
Flutter 异常捕获与处理:从入门到生产实践
flutter
不爱吃糖的程序媛2 天前
已有 Flutter 应用适配鸿蒙平台指导文档
flutter·华为·harmonyos
weixin_443478512 天前
flutter组件学习之卡片与列表
javascript·学习·flutter
不爱吃糖的程序媛2 天前
Flutter-OH 升级指导
flutter
恋猫de小郭3 天前
Android 禁止侧载将正式实施,需要等待 24 小时冷静期
android·flutter·harmonyos