Better sticker & able embed attachment into markdown

This commit is contained in:
2024-08-06 16:24:47 +08:00
parent 4f6c5aa053
commit 56bbf73b5e
4 changed files with 93 additions and 2 deletions

View File

@ -43,7 +43,11 @@ class ChatEventMessage extends StatelessWidget {
);
}
return MarkdownTextContent(content: body.text);
return MarkdownTextContent(
parentId: 'm${item.id}',
isSelectable: true,
content: body.text,
);
}
Widget _buildBody(BuildContext context) {