GiovChat in React Native apps.

The same workspace that powers your website widget can open inside a native app, so mobile conversations join the same inbox.

GiovChat mobile chat sheet on a phone

Package

pnpm add @fegig/giovchat-rn

Modal launcher

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>
  );
}

What you ship

  • pnpm add @fegig/giovchat-rn
  • Pass tenantKey from the dashboard — not a made-up user token
  • Modal by default, or mode="fullscreen" for a chat screen
  • Optional contact object so known users skip pre-chat fields
The mobile chat sheet operators will answer from the same inbox

Start free. Grow when your queue does.

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