feat: 私信显示分享视频内容、富文本表情,补充信息类型枚举

This commit is contained in:
orz12
2024-01-25 20:24:13 +08:00
parent e052c6eafe
commit 9663278916
4 changed files with 187 additions and 35 deletions

View File

@ -110,12 +110,16 @@ class _WhisperDetailPageState extends State<WhisperDetailPage> {
if (i == 0) {
return Column(
children: [
ChatItem(item: messageList[i]),
ChatItem(
item: messageList[i],
e_infos: _whisperDetailController.eInfos),
const SizedBox(height: 12),
],
);
} else {
return ChatItem(item: messageList[i]);
return ChatItem(
item: messageList[i],
e_infos: _whisperDetailController.eInfos);
}
},
),