arolleaguekeng / flutter_gemini_bot

create a customizable chatbot easily and quickly with flutter
MIT License
18 stars 4 forks source link

Problem with UI #1

Open Jace-Joji opened 2 months ago

Jace-Joji commented 2 months ago

WhatsApp Image 2024-04-22 at 11 12 03 AM

The chat bubbles are not visible and appear kind of blurry. Also how to change the mic icon as well the bot pics?

arolleaguekeng commented 2 months ago

Hello @Jace-Joji

You can customize the chat bubble with the parameters botChatBubbleColor and userChatBubbleColor for the bubble colors, and for the text within the bubble, you can use botChatBubbleTextColor and userChatBubbleTextColor. Here's a concrete example:

FlutterGeminiChat(
       botChatBubbleColor: Colors.green
       userChatBubbleColor: Colors.blue,
       botChatBubbleTextColor: Colors.white
       userChatBubbleTextColor: Colors.white
        chatContext: 'you are a frontend app developer',
        chatList: chatList,
        apiKey: apiKey,
      ),

Regarding the bot icon, we will make it customizable for the next version.

medishield-healthcare commented 4 weeks ago

this doesn't fix it