Navigation bar
You can customize the background color and properties of the Navigation bar 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.navigation.backgroundColor = Colors.white.toString();
customTheme.navigation.titleColor = Colors.black.toString();
customTheme.navigation.tintColor = Colors.black.toString();
//Set the customized theme using ZohoSalesIQ.Theme.setTheme API
ZohoSalesIQ.setThemeForiOS(customTheme);