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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
import 'dart:ui';
import 'package:flutter/material.dart';
class ChatSection extends StatelessWidget {
final ScrollController scrollController;
final List<ChatMessage> chatMessages;
final Function(String text, {bool isUserMessage}) addChatMessage;
final String theme;
ChatSection({
required this.scrollController,
required this.chatMessages,
required this.addChatMessage,
required this.theme,
});
@override
@override
Widget build(BuildContext context) {
return ClipRect(
child: BackdropFilter(
filter: ImageFilter.blur(sigmaX: 10.0, sigmaY: 10.0),
child: Card(
color: theme == "textured-dark" || theme == "textured-light"
? Colors.transparent
: null,
elevation: 4, // Add a subtle shadow
shadowColor: theme == "textured-dark" || theme == "textured-light"
? Colors.transparent
: null,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12),
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
// Chat heading
Container(
padding: EdgeInsets.fromLTRB(12, 12, 0, 0),
// alignment: Alignment.l,
child: Text(
'Conversation Logs',
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 18,
),
textAlign: TextAlign.left,
),
),
// Chat messages with fixed height
Container(
padding: EdgeInsets.all(10),
height: 180, // Adjust the height as needed
child: ListView.builder(
controller: scrollController,
itemCount: chatMessages.length,
itemBuilder: (context, index) {
final message = chatMessages[index];
return ChatMessageTile(message: message);
},
),
),
// User input field (if needed)
// ...
],
),
),
),
);
}
}
class ChatMessage {
final String text;
final bool isUserMessage;
ChatMessage({required this.text, this.isUserMessage = false});
}
class ChatMessageTile extends StatelessWidget {
final ChatMessage message;
ChatMessageTile({required this.message});
@override
Widget build(BuildContext context) {
return ListTile(
contentPadding: EdgeInsets.all(0),
title: Container(
alignment:
message.isUserMessage ? Alignment.topRight : Alignment.topLeft,
child: Row(
mainAxisAlignment: message.isUserMessage
? MainAxisAlignment.end
: MainAxisAlignment.start,
children: [
if (!message.isUserMessage)
CircleAvatar(
backgroundColor: Colors.green,
child: Icon(
Icons.smart_toy_outlined,
color: Colors.white,
),
),
SizedBox(width: 8),
Flexible(
child: Container(
padding: EdgeInsets.symmetric(horizontal: 16, vertical: 8),
decoration: BoxDecoration(
borderRadius: BorderRadius.only(
topLeft: Radius.circular(16),
topRight: Radius.circular(16),
bottomLeft: message.isUserMessage
? Radius.circular(16)
: Radius.circular(0),
bottomRight: message.isUserMessage
? Radius.circular(0)
: Radius.circular(16),
),
color: message.isUserMessage ? Colors.blue : Colors.green,
),
child: Text(
message.text,
style: TextStyle(color: Colors.white, fontSize: 17),
maxLines: null,
),
),
),
SizedBox(width: 8),
if (message.isUserMessage)
CircleAvatar(
backgroundColor: Colors.blue,
child: Icon(
Icons.person,
color: Colors.white,
),
),
],
),
),
);
}
}
|