-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbasic_chat.dart
58 lines (51 loc) · 1.53 KB
/
basic_chat.dart
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import 'package:flutter/material.dart';
import 'package:swifty_chat/swifty_chat.dart';
import 'package:swifty_chat_mocked_data/swifty_chat_mocked_data.dart';
class BasicChat extends StatefulWidget {
const BasicChat({super.key});
@override
// ignore: library_private_types_in_public_api
_BasicChatState createState() => _BasicChatState();
}
class _BasicChatState extends State<BasicChat> {
final List<MockMessage> _messages = [];
late Chat chatView;
@override
void initState() {
super.initState();
setState(() {
_messages.addAll(generateRandomTextMessages());
});
}
@override
Widget build(BuildContext context) {
chatView = _chatWidget(context);
return Scaffold(
appBar: AppBar(title: const Text('Basic Chat')),
body: chatView,
);
}
Chat _chatWidget(BuildContext context) => Chat(
theme: const DarkChatTheme(),
messages: _messages,
chatMessageInputField: MessageInputField(
key: const Key('message_input_field'),
sendButtonTapped: (msg) {
debugPrint(msg);
setState(
() {
final message = MockMessage(
date: DateTime.now(),
user: MockChatUser.outgoingUser,
id: DateTime.now().toString(),
isMe: true,
messageKind: MessageKind.text(msg),
);
_messages.insert(0, message);
chatView.scrollToBottom();
},
);
},
),
);
}