desk_zoho_chat 1.0.2
desk_zoho_chat: ^1.0.2 copied to clipboard
A Flutter plugin to integrate Zoho Desk Support in your Flutter app. It provides an easy-to-use API for communicating with the Zoho Desk platform to provide in-app chat functionality for customer support.
desk_zoho_chat #
A flutter implementation of desk.zoho.com In-app support. You need desk.zoho.com widget code to use this plugin
Screenshots
Getting Started #
copy the your appId from the generated code gotten from desk.zoho.com dashboard
This plugin is depended on InappWebView! so you'll need to set the necessary permissions
For Android, in your Manifest.xml add :
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:label="desk_zoho_chat_example"
android:icon="@mipmap/ic_launcher"
android:usesCleartextTraffic="true"> //add this line
For iOS, in your Info.plist add:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSAllowsArbitraryLoadsInWebContent</key>
<true/>
</dict>
<key>NSAllowsLocalNetworking</key>
<true/>
<key>NSAllowsArbitraryLoadsInWebContent</key>
<true/>
Get Your AppID From the desk.zoho.com Assuming the widget code here is ** xxxxx **, copy it and use desk_desk_zoho_chat this way
DeskZohoChat(
zohoAppID: "xxxxx", //desk.zoho.com chat AppID
)