TabBar

You can customize the colors and properties of the  TabBar  (Active and inactive tabs) to match the look and feel of your application..

TabBar

Copied//Get baseTheme using ZohoSalesIQ.Theme.baseTheme
let customTheme = ZohoSalesIQ.Theme.baseTheme

//Customize properties in the customTheme instance as desired
customTheme.TabBar.activeTabColor = UIColor.blue
customTheme.TabBar.backgroundColor = UIColor.white
customTheme.TabBar.inactiveTabColor  = UIColor.gray

//Set the customized theme using ZohoSalesIQ.Theme.setTheme API
ZohoSalesIQ.Theme.setTheme(theme: customTheme)