zendesk_plugin 1.0.0 copy "zendesk_plugin: ^1.0.0" to clipboard
zendesk_plugin: ^1.0.0 copied to clipboard

outdated

A Flutter plugin for the Zendesk Chat SDK v2

zendesk plugin #

A Flutter plugin for the Zendesk Chat SDK v2

Getting Started #

Android Setup #

You must set a compatible theme theme in the AndroidManifest.xml file's

The example Android setup follows the pattern described in the post.

iOS Setup #

Create a new "Run Scripts Phase" in your target's "Build Phases".

This script should be the last step in your project's "Build Phases". Paste the following snippet into the script text field:

"${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}/ChatSDK.framework/strip-frameworks.sh"

Deployment Target >= 10.0

Usage #

Initializing the plugin

await Zendesk.initialize(<account key>, <application id>);

Setting visitor information (optional)

await Zendesk.setVisitorInfo(
    name: 'Text Client',
    email: 'test+client@example.com',
    phoneNumber: '0000000000',
    department: 'Support',
);

Open chat client

Zendesk.startChat(navigationBarColor: Colors.red);

// Note: navigationBarColor will only configure iOS. Android AppBar color
// is controlled by the app's theme
13
likes
0
pub points
86%
popularity

Publisher

verified publishertaxfyle.com

A Flutter plugin for the Zendesk Chat SDK v2

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on zendesk_plugin