Merge pull request #6 from Shchoholiev/bug/SA-204-chat-visual-bugs

bug/SA-204-chat-visual-bugs
This commit is contained in:
Serhii Shchoholiev 2023-12-03 06:18:49 -08:00 committed by GitHub
commit 6fb847780b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,9 @@ class MessageBubble extends StatelessWidget {
children: [ children: [
Text( Text(
message, message,
style: TextStyle(color: isOutgoing ? Colors.white : Colors.black), style: TextStyle(color: isOutgoing ? Colors.white : Colors.black,
fontSize: 18.0
),
), ),
if (isProduct) if (isProduct)
ElevatedButton( ElevatedButton(
@ -81,7 +83,7 @@ class ChatScreenState extends State<ChatScreen> {
void initState() { void initState() {
super.initState(); super.initState();
appBarTitle = Text('New Chat'); appBarTitle = Text('New Chat', style: TextStyle(fontSize: 18.0));
_searchService.sseStream.listen((event) { _searchService.sseStream.listen((event) {
_handleSSEMessage(Message(text: '${event.data}')); _handleSSEMessage(Message(text: '${event.data}'));
}); });
@ -143,7 +145,7 @@ class ChatScreenState extends State<ChatScreen> {
final wishlistName = await _searchService.generateNameForPersonalWishlist(wishlistId); final wishlistName = await _searchService.generateNameForPersonalWishlist(wishlistId);
if (wishlistName != null) { if (wishlistName != null) {
setState(() { setState(() {
appBarTitle = Text(wishlistName); appBarTitle = Text(wishlistName, style: TextStyle(fontSize: 18.0));
}); });
} }
} }
@ -248,7 +250,7 @@ class ChatScreenState extends State<ChatScreen> {
child: Column( child: Column(
children: [ children: [
Text( Text(
'Choose an Option', 'What are you looking for?',
style: TextStyle(fontSize: 18, fontWeight: FontWeight.bold), style: TextStyle(fontSize: 18, fontWeight: FontWeight.bold),
), ),
Row( Row(
@ -391,6 +393,7 @@ class ChatScreenState extends State<ChatScreen> {
}, },
decoration: InputDecoration( decoration: InputDecoration(
hintText: 'Enter your message...', hintText: 'Enter your message...',
contentPadding: EdgeInsets.symmetric(vertical: 20.0)
), ),
), ),
), ),