Widget _buildDesSimple(BuildContext context) { return const TDCellGroup( cells: [ TDCell(arrow: true, title: '单行标题', description: '一段很长很长的内容文字'), TDCell(arrow: true, title: '单行标题', description: '一段很长很长的内容文字', required: true), TDCell( arrow: true, title: '单行标题', description: '一段很长很长的内容文字', noteWidget: TDBadge(TDBadgeType.message, count: '8')), TDCell(arrow: false, title: '单行标题', description: '一段很长很长的内容文字', rightIconWidget: TDSwitch(isOn: true)), TDCell(arrow: true, title: '单行标题', description: '一段很长很长的内容文字', note: '辅助信息'), TDCell(arrow: true, title: '单行标题', description: '一段很长很长的内容文字一段很长很长的内容文字一段很长很长的内', leftIcon: TDIcons.lock_on), TDCell(arrow: false, title: '单行标题', description: '一段很长很长的内容文字一段很长很长的内容文字一段很长很长的内'), TDCell(arrow: false, title: '多行高度不定,长文本自动换行,该选项的描述是一段很长的内容', description: '一段很长很长的内容文字一段很长很长的内容文字一段很长很长的内'), TDCell( arrow: true, title: '多行带头像', description: '一段很长很长的内容文字', image: AssetImage('assets/img/td_avatar_1.png'), ), // NetworkImage('https://tdesign.gtimg.com/mobile/demos/avatar1.png')), TDCell( arrow: true, title: '多行带图片', description: '一段很长很长的内容文字', image: AssetImage('assets/img/image.png'), imageCircle: 8, ), ], ); }