TabBar
You can customize the colors and properties of the TabBar (Active and inactive tabs) to match the look and feel of your application.
Example
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.tabBar.activeTabColor = Colors.blue.toString();
customTheme.tabBar.backgroundColor = Colors.white.toString();
customTheme.tabBar.inactiveTabColor = Colors.grey.toString();
// Set the customized theme using ZohoSalesIQ.setThemeForiOS API
ZohoSalesIQ.setThemeForiOS(customTheme);