Network Waiting Banner

You can customize the colors and properties of the 'Waiting for network' banner to match your custom theme appearance.

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.networkWaitingBanner.textColor = Colors.white.toString();
customTheme.networkWaitingBanner.loaderColor = Colors.white.toString();
customTheme.networkWaitingBanner.backgroundColor = Colors.black.toString();

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