zendesk_helpcenter 1.0.2 copy "zendesk_helpcenter: ^1.0.2" to clipboard
zendesk_helpcenter: ^1.0.2 copied to clipboard

zendesk_helpcenter

Zendesk HelpCenter Flutter Plugin

The Zendesk HelpCenter Flutter Plugin is a plugin for integrating Zendesk ticket creation functionality into your Flutter application. This plugin allows users to create support tickets within the app using Zendesk's HelpCenter for android and iOS.

Features

  • Ticket Creation: Users can create support tickets directly within the Flutter app.
  • Zendesk Integration: The plugin seamlessly integrates with Zendesk's HelpCenter, ensuring smooth ticket creation and management.

Installation

To use the Zendesk HelpCenter Flutter Plugin in your Flutter project, follow these steps:

  1. Add the following dependency to your project's pubspec.yaml file:
dependencies:
  zendesk_helpcenter: ^1.0.0
  1. Run the following command to fetch the plugin's dependencies:
flutter pub get
  1. Import the plugin in your Dart code:
import 'package:zendesk_helpcenter/zendesk_helpcenter.dart';

Usage

To create a support ticket using the Zendesk HelpCenter Flutter Plugin, follow these steps:

  1. Initialize the plugin with your Zendesk HelpCenter credentials:
ZendeskHelpcenter.initialize(
                    appId: "Your zendesk app id from zendesk developer console",
                    clientId: "Your zendesk client id from zendesk developer console",
                    nameIdentifier:
                        "Unique id for user , you can put jwt token or access token",
                    urlString: "App url from of zendesk app");
  1. Call the createTicket method to open the ticket creation interface:
 ZendeskHelpcenter.showRequestList();

If community required custome filed with create ticket, let create the issue i will update repo

Make sure to replace 'YOUR_ZENDESK_URL', 'YOUR_APP_ID', and 'YOUR_CLIENT_ID' with your actual Zendesk HelpCenter credentials.

Issues and Contributions

If you encounter any issues with the Zendesk HelpCenter Flutter Plugin or would like to contribute to its development, please visit the GitHub repository: (https://github.com/r723/flutter_helpcenter/tree/main)

License

The Zendesk HelpCenter Flutter Plugin is released under the MIT License.

Acknowledgments

We would like to acknowledge and thank Zendesk for their HelpCenter platform, which serves as the backbone for this plugin.