Skip to content

RtkChat

Full chat interface with message list, text input, image/file upload support, and pinned messages.

Properties

PropertyTypeRequiredDefaultDescription
meetingRealtimeKitClient-The RealtimeKit meeting instance
configUIConfigdefaultConfigUI configuration object
iconPackIconPackdefaultIconPackCustom icon pack
size'lg' | 'md' | 'sm' | 'xl''sm'Size variant
tRtkI18n-i18n translation function

Usage Examples

Basic Usage

import { RtkChat } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkChat meeting={meeting} />;
}

With Properties

import { RtkChat } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkChat meeting={meeting} size="md" config={customConfig} />;
}