forked from javico2609/flutter-challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchats_data.dart
More file actions
34 lines (32 loc) · 1.1 KB
/
Copy pathchats_data.dart
File metadata and controls
34 lines (32 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import 'package:playground_flutter/models/chat_model.dart';
final List<ChatModel> chats = [
new ChatModel(
name: 'Javier González',
message:
"Mima estoy en el Shopping, quieres que compre algo para la cena ?",
time: "12:30 PM",
avatar:
"http://www.usanetwork.com/sites/usanetwork/files/styles/629x720/public/suits_cast_harvey.jpg?itok=fpTOeeBb",
),
new ChatModel(
name: 'Daynelis Cruz',
message: "Revisa si hay tomates frescos en el mercado",
time: "12:32 PM",
avatar:
"https://heavyeditorial.files.wordpress.com/2017/07/jessica-johnson-5.jpg?w=531&quality=65&strip=all&h=531",
),
new ChatModel(
name: 'Javier González',
message: "OK, algo más ?",
time: "12:35 PM",
avatar:
"http://www.usanetwork.com/sites/usanetwork/files/styles/629x720/public/suits_cast_harvey.jpg?itok=fpTOeeBb",
),
new ChatModel(
name: 'Daynelis Cruz',
message: "No, solo eso necesito",
time: "12:36 PM",
avatar:
"https://heavyeditorial.files.wordpress.com/2017/07/jessica-johnson-5.jpg?w=531&quality=65&strip=all&h=531",
),
];