Skip to main content

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

Copied// Create a new theme instance using SIQTheme
const customTheme = new SIQTheme();

// Customize properties in the customTheme instance as desired
customTheme.TabBar.activeTabColor = "#0000FF"
customTheme.TabBar.backgroundColor ="#FFFFFF"
customTheme.TabBar.inactiveTabColor  = "#808080"

// Set the customized theme using ZohoSalesIQ.setThemeForiOS API
ZohoSalesIQ.setThemeForiOS(customTheme);