FAQ
You can customize the colors and properties in the FAQ section of Mobilisten.
FAQ.Article.Toolbar
FAQ
Copiedimport 'package:salesiq_mobilisten/siqtheme.dart';
// Create a new theme instance using SIQTheme
var customTheme = new SIQTheme();
// Customize properties in the customTheme instance as desired
customTheme.faq.headerTextColor = Colors.black.toString();
customTheme.faq.listItem.titleTextColor = Colors.black.toString();
customTheme.faq.listItem.subtitleTextColor = Colors.grey.toString();
customTheme.faq.listItem.subtitlePartitionColor = Colors.grey.toString();
customTheme.faq.listItem.separatorColor = Colors.grey.toString();
customTheme.faq.listItem.likedColor = Colors.blue.toString();
customTheme.faq.listItem.likePendingColor = Colors.grey.toString();
customTheme.faq.listItem.backgroundColor = Colors.white.toString();
// Set the customized theme using ZohoSalesIQ.setThemeForiOS API
ZohoSalesIQ.setThemeForiOS(customTheme);
FAQ.Article.Toolbar
Copiedimport 'package:salesiq_mobilisten/siqtheme.dart';
// Create a new theme instance using SIQTheme
var customTheme = new SIQTheme();
//Customize properties in the customTheme instance as desired
customTheme.faq.article.toolbar.backgroundColor = Colors.white.toString();
customTheme.faq.article.toolbar.likeButton.selectedColor = Colors.blue.toString();
customTheme.faq.article.toolbar.likeButton.normalColor = Colors.grey.toString();
customTheme.faq.article.toolbar.dislikeButton.selectedColor = Colors.blue.toString();
customTheme.faq.article.toolbar.dislikeButton.normalColor = Colors.grey.toString();
// Set the customized theme using ZohoSalesIQ.setThemeForiOS API
ZohoSalesIQ.setThemeForiOS(customTheme);