desk_zoho_chat 1.0.2 copy "desk_zoho_chat: ^1.0.2" to clipboard
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
  )
1
likes
130
points
32
downloads

Publisher

unverified uploader

Weekly Downloads

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.

Repository
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, flutter_inappwebview

More

Packages that depend on desk_zoho_chat

Packages that implement desk_zoho_chat