全屏侧边栏模态窗口,带有用于聊天、参会者、投票和插件面板的标签页导航。
| 属性 | 类型 | 必填 | 默认值 | 描述 |
|---|---|---|---|---|
meeting |
RealtimeKitClient |
✅ | - | RealtimeKit 会议实例 |
config |
UIConfig |
❌ | defaultConfig |
UI 配置对象 |
iconPack |
IconPack |
❌ | defaultIconPack |
自定义图标包 |
size |
'lg' | 'md' | 'sm' | 'xl' |
❌ | 'sm' |
尺寸变体 |
states |
States |
❌ | - | UI 状态对象 |
defaultSection |
'chat' | 'none' | 'participants' | 'plugins' | 'polls' |
❌ | 'chat' |
默认激活的标签页 |
enabledSections |
SidebarSection[] |
❌ | ['chat', 'polls', 'participants', 'plugins'] |
要显示的侧边栏部分 |
t |
RtkI18n |
❌ | - | i18n 翻译函数 |
import { RtkSidebar } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkSidebar meeting={meeting} />;
}import { RtkSidebar } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return (
<RtkSidebar
meeting={meeting}
defaultSection="chat"
enabledSections={["chat", "participants", "polls"]}
size="md"
/>
);
}