flutter/lib/pages/chat/mock/chat_json.dart
2025-07-21 15:46:30 +08:00

162 lines
4.3 KiB
Dart
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/// 聊天消息JSON数据
library;
List chatData = [
// 时间提示
{
'id': 'e52f8ef0-2000-1e8e-9950-9deefac27e48',
'contentType': 1,
'isme': null,
'avatar': null,
'author': null,
'content': '1月23日 上午10:02',
'image': null,
'video': null
},
// 公告提示
{
'id': '8c369020-203a-1e8e-9950-9deefac27e48',
'contentType': 2,
'isme': null,
'avatar': null,
'author': null,
'content': '文明聊天,共建和谐网络环境',
'image': null,
'video': null
},
// 文字消息(别人)
{
'id': 'd141f210-207e-1e8e-9950-9deefac27e48',
'contentType': 3,
'isme': false,
'avatar': 'assets/images/avatar/img02.jpg',
'author': 'Flutter',
'content': '测试。',
'image': null,
'video': null
},
// 文字消息(自己)
{
'id': 'b081a8b0-20c7-1e8e-9950-9deefac27e48',
'contentType': 3,
'isme': true,
'avatar': 'assets/images/avatar/img11.jpg',
'author': 'Andy',
'content': '发消息~ 👍',
'image': null,
'video': null
},
// 图片消息(自己)
{
'id': '928fd950-20a7-1e8e-9950-9deefac27e48',
'contentType': 5,
'isme': true,
'avatar': 'assets/images/avatar/img11.jpg',
'author': 'Andy',
'content': '',
'image': 'assets/images/pic1.jpg',
'video': null
},
// 文字消息-emoj表情别人
{
'id': 'c0b90600-20e6-1e8e-9950-9deefac27e48',
'contentType': 3,
'isme': false,
'avatar': 'assets/images/avatar/img05.jpg',
'author': '鸭鸭',
'content': '太棒了😍',
'image': null,
'video': null
},
// 公告提示
{
'id': '0cbd3d00-210a-1e8e-9950-9deefac27e48',
'contentType': 2,
'isme': null,
'avatar': null,
'author': null,
'content': '"鸭鸭" 撤回了一条消息',
'image': null,
'video': null
},
// 视频消息
{
'id': 'c6aa6600-219d-1e8e-9950-9deefac27e48',
'contentType': 6,
'isme': false,
'avatar': 'assets/images/avatar/img04.jpg',
'author': 'Dog',
'content': '',
'image': 'https://tx2.a.yximgs.com/upic/2021/01/22/09/BMjAyMTAxMjIwOTU5MzRfMzI3NDc4MjUwXzQyNzc0Mjg1MTQzXzFfMw==_B69ad663ba1334613aa637bfd1d352ce8.jpg',
'video': 'https://txmov2.a.yximgs.com/upic/2021/01/22/09/BMjAyMTAxMjIwOTU5MzRfMzI3NDc4MjUwXzQyNzc0Mjg1MTQzXzFfMw==_b_B698a01bbbdfb0314733cfc38c0d7b6d0.mp4'
},
// 语音消息(自己)
{
'id': '5cab2580-21d6-1e8e-9950-9deefac27e48',
'contentType': 7,
'isme': true,
'avatar': 'assets/images/avatar/img11.jpg',
'author': 'Andy',
'content': '',
'duration': 58,
'image': null,
'video': null
},
// 图片消息(别人)
{
'id': '02d12580-2160-1e8e-9950-9deefac27e48',
'contentType': 5,
'isme': true,
'avatar': 'assets/images/avatar/img11.jpg',
'author': 'Andy',
'content': '',
'image': 'assets/images/pic2.jpg',
'video': null
},
// 红包消息
{
'id': '04458320-21ba-1e8e-9950-9deefac27e48',
'contentType': 8,
'isme': false,
'avatar': 'assets/images/avatar/img12.jpg',
'author': '小蝶',
'content': '恭喜发财,大吉大利',
'image': null,
'video': null
},
// 文字消息-大表情(自己)
{
'id': '9a76b370-212c-1e8e-9950-9deefac27e48',
'contentType': 4,
'isme': true,
'avatar': 'assets/images/avatar/img11.jpg',
'author': 'Andy',
'content': '',
'image': 'assets/images/emotion/face05/6.gif',
'video': null
},
// 语音消息
{
'id': '5cab2580-21d6-1e8e-9950-9deefac27e48',
'contentType': 7,
'isme': false,
'avatar': 'assets/images/avatar/img12.jpg',
'author': '小蝶',
'content': '',
'duration': 24,
'image': null,
'video': null
},
// 位置消息
{
'id': '90d29770-21f0-1e8e-9950-9deefac27e48',
'contentType': 9,
'isme': true,
'avatar': 'assets/images/avatar/img11.jpg',
'author': 'Andy',
'content': {'address': '天安门广场', 'location': '北京市东城区景山前街4号天安门广场内', 'latitude': 39.919278, 'longitude': 116.397005},
'image': 'assets/images/map.jpg',
'video': null
},
];