是否可以自定义 ListTile 以容纳标题、副标题和其他文本行?

Nik*_*eka 4 dart flutter

我正在寻找一种在 ListTile 中添加除标题和副标题之外的其他行的方法。有谁做过或者分享一下怎么做吗?提前致谢。

           Expanded(
            child: ListView.builder(
              itemCount: profile.length,
              shrinkWrap: true,
              itemBuilder: (context, index) => ListTile(
                leading: Image.asset('assets/images/profile.png'),
                title: Text(profile[index].firstName + ' ' + profile[index].lastName),
                subtitle: Text('This is my speciality'),
                *****************
                **# Want to add another line her after the subtitle**
                *****************
                trailing: Text('$ 50'),
                visualDensity: VisualDensity.compact,
                dense: true,
                isThreeLine: true,
              ),
            ),
          ),
Run Code Online (Sandbox Code Playgroud)

Jah*_*lam 8

字幕文本换行column如下:

ListTile(
                leading: Image.asset('assets/images/profile.png'),
                title: Text(profile[index].firstName + ' ' + profile[index].lastName),
               
                subtitle: Column(
                  crossAxisAlignment: CrossAxisAlignment.start,
                  children: [
                    Text("test text"),
                    Text("test text")
                  ],
                ),
                trailing: Text('$ 50'),
                visualDensity: VisualDensity.compact,
                dense: true,
                isThreeLine: tru
              ),
Run Code Online (Sandbox Code Playgroud)

具有多个图像subTitle

在此输入图像描述