Offline Banner

You can customize the colors and properties of the OfflineBanner 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.offlineBanner.backgroundColor = Colors.grey.toString();
customTheme.offlineBanner.textColor = Colors.black.toString();

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