Maintain basic messaging websocket

This commit is contained in:
2024-04-18 22:33:55 +08:00
parent 8943f089f2
commit 94f9076abb
52 changed files with 288 additions and 101 deletions

View File

@@ -46,7 +46,11 @@ class ChatMessage extends StatelessWidget {
return Row(
children: [
const SizedBox(width: 40),
Expanded(child: contentPart),
Expanded(
child: Column(
children: [contentPart, renderAttachment()],
),
),
],
);
} else {