@robbywh/react-native-zendesk-messaging
TypeScript icon, indicating that this package has built-in type declarations

1.1.1 • Public • Published

@robbywh/react-native-zendesk-messaging

Zendesk Messaging for React Native

Installation

yarn add @robbywh/react-native-zendesk-messaging

For the Android platform, don't forget to add this script inside android/build.gradle

allprojects {
    repositories {
        maven {
            url "https://zendesk.jfrog.io/artifactory/repo"
        }
    }
}

Usage

import * as React from 'react';
import { Text, View, Button, Platform } from 'react-native';
import Config from 'react-native-config';
import {
  initialize,
  showMessaging,
} from '@robbywh/react-native-zendesk-messaging';
const App = () => {
  React.useEffect(() => {
    initialize(
      Platform.OS === 'android'
        ? Config.CHANNEL_KEY_ANDROID
        : Config.CHANNEL_KEY_IOS
    );
  }, []);
  return (
    <View style={{ padding: 100 }}>
      <Text
        style={{
          marginBottom: 50,
          textAlign: 'center',
          fontWeight: 'bold',
          fontSize: 20,
        }}
      >
        Zendesk Messaging
      </Text>
      <Text style={{ marginBottom: 10, textAlign: 'center' }}>
        Press The "CHAT" button to test
      </Text>
      <Button onPress={() => showMessaging()} title="CHAT" />
    </View>
  );
};
export default App;

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library

Package Sidebar

Install

npm i @robbywh/react-native-zendesk-messaging

Weekly Downloads

80

Version

1.1.1

License

MIT

Unpacked Size

41 kB

Total Files

22

Last publish

Collaborators

  • robby.widyahartono