管理并显示会议通知(参会者加入/离开、聊天消息、投票、网络状态)并带有音效的容器。
| 属性 | 类型 | 必填 | 默认值 | 描述 |
|---|---|---|---|---|
meeting |
RealtimeKitClient |
✅ | - | RealtimeKit 会议实例 |
config |
UIConfig |
✅ | defaultConfig |
UI 配置对象 |
iconPack |
IconPack |
✅ | defaultIconPack |
自定义图标包 |
size |
'lg' | 'md' | 'sm' | 'xl' |
✅ | 'sm' |
尺寸变体 |
states |
States |
✅ | - | UI 状态对象 |
t |
RtkI18n |
✅ | - | i18n 翻译函数 |
import {
RtkNotifications,
useLanguage,
} from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
const t = useLanguage();
return (
<RtkNotifications
meeting={meeting}
config={config}
iconPack={iconPack}
size="sm"
states={states}
t={t}
/>
);
}import {
RtkNotifications,
defaultConfig,
defaultIconPack,
useLanguage,
} from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
const t = useLanguage();
return (
<RtkNotifications
meeting={meeting}
config={defaultConfig}
iconPack={defaultIconPack}
size="md"
states={states}
t={t}
/>
);
}