参加者の総数を表示し、タップすると参加者サイドバーを開きます。
| プロパティ | 型 | 必須 | デフォルト | 説明 |
|---|---|---|---|---|
meeting |
RealtimeKitClient |
✅ | - | RealtimeKit の Meeting インスタンス |
iconPack |
IconPack |
❌ | defaultIconPack |
カスタムアイコンパック |
t |
RtkI18n |
❌ | - | i18n の翻訳関数 |
import { RtkParticipantCount } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkParticipantCount meeting={meeting} />;
}import { RtkParticipantCount } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkParticipantCount meeting={meeting} iconPack={customIconPack} />;
}