显示头像、名称、音频/视频状态图标以及主持人控制选项(固定、移出会议、静音、舞台管理)的参会者列表项卡片。
| 属性 | 类型 | 必填 | 默认值 | 描述 |
|---|---|---|---|---|
participant |
Peer |
✅ | - | 要显示的参会者 |
meeting |
RealtimeKitClient |
❌ | - | RealtimeKit 会议实例 |
iconPack |
IconPack |
❌ | defaultIconPack |
自定义图标包 |
t |
RtkI18n |
❌ | - | i18n 翻译函数 |
import { RtkParticipant } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkParticipant participant={participant} />;
}import { RtkParticipant } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return (
<RtkParticipant
participant={participant}
meeting={meeting}
iconPack={customIconPack}
/>
);
}