zoho / salesiq-mobilisten-flutter

SalesIQ Mobilisten plugin for Flutter.
https://mobilisten.io
MIT License
12 stars 10 forks source link

How to set Theme color for Android #21

Closed florafresco closed 1 year ago

florafresco commented 1 year ago

Hi,

I see setThemeColorForiOS is used to set the overall theme of the chat. But its available only in iOS.

The documentation didn't say how we can add for android.

I'm still seeing only default blue theme in android version.

bhahirathan-mb-11956 commented 1 year ago

Hi @florafresco ,

Sorry for the inconvenience. We'll add this to our documentation soon. In the meantime, please follow the step and sample snippet below to change the theme color for Android.

  1. Change the color code in the attribute "colorAccent" inside the SalesIQ theme.
<style name="Theme.SalesIQ.Base.DarkActionBar" parent="Theme.SalesIQ.Light" >
            <item name="colorAccent">#BB0000</item>
</style>

Regards, Bhahirathan