Full chat interface with message list, text input, image/file upload support, and pinned messages.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
meeting |
RealtimeKitClient |
✅ | - | The RealtimeKit meeting instance |
config |
UIConfig |
❌ | defaultConfig |
UI configuration object |
iconPack |
IconPack |
❌ | defaultIconPack |
Custom icon pack |
size |
'lg' | 'md' | 'sm' | 'xl' |
❌ | 'sm' |
Size variant |
t |
RtkI18n |
❌ | - | i18n translation function |
import { RtkChat } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkChat meeting={meeting} />;
}import { RtkChat } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkChat meeting={meeting} size="md" config={customConfig} />;
}