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