GiovChat for Expo.

Use the same mobile component in Expo projects. Conversations still land in the GiovChat inbox your operators already use.

Chat inside a mobile app using the same GiovChat tenant

Expo install

npx expo install @fegig/giovchat-rn

Same GiovChat component

import { useState } from "react";
import { Button, View } from "react-native";
import { GiovChat } from "@fegig/giovchat-rn";

export function SupportButton() {
  const [open, setOpen] = useState(false);

  return (
    <View>
      <Button title="Chat with us" onPress={() => setOpen(true)} />
      <GiovChat
        tenantKey="YOUR_TENANT_KEY"
        visible={open}
        onClose={() => setOpen(false)}
      />
    </View>
  );
}

Same package, Expo installer

Run npx expo install @fegig/giovchat-rn so the SDK stays aligned with your Expo SDK. The GiovChat component and tenantKey are the same as React Native. No extra native modules are required.

Start free. Grow when your queue does.

Live chat, a shared inbox, and GiovBot in one workspace.