mirror of
https://github.com/Shchoholiev/shopping-assistant-mobile-client.git
synced 2025-04-04 16:49:37 +00:00
fixed cosmetic bugs
This commit is contained in:
parent
e866bd5487
commit
c6e29ed637
@ -38,7 +38,7 @@ class MessageBubble extends StatelessWidget {
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
message,
|
||||
message.trim(),
|
||||
style: TextStyle(color: isOutgoing ? Colors.white : Colors.black,
|
||||
fontSize: 18.0
|
||||
),
|
||||
@ -127,6 +127,7 @@ class ChatScreenState extends State<ChatScreen> {
|
||||
final lastMessage = messages.isNotEmpty ? messages.last : null;
|
||||
message.isProduct = _searchService.checkerForProduct();
|
||||
message.isSuggestion = _searchService.checkerForSuggestion();
|
||||
bool checker = false;
|
||||
logger.d("Product status: ${message.isProduct}");
|
||||
if (lastMessage != null && lastMessage.role != "User" && message.role != "User") {
|
||||
final updatedMessage = Message(
|
||||
@ -388,6 +389,8 @@ class ChatScreenState extends State<ChatScreen> {
|
||||
child: Row(
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.only(left: 15.0), // Adjust the left padding as needed
|
||||
child: TextField(
|
||||
controller: _messageController,
|
||||
onChanged: (text) {
|
||||
@ -397,7 +400,8 @@ class ChatScreenState extends State<ChatScreen> {
|
||||
},
|
||||
decoration: InputDecoration(
|
||||
hintText: 'Enter your message...',
|
||||
contentPadding: EdgeInsets.symmetric(vertical: 20.0)
|
||||
contentPadding: EdgeInsets.symmetric(vertical: 20.0),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
Loading…
Reference in New Issue
Block a user