ミーティングを録画中のとき、点滅する録画インジケーターを表示します。
| プロパティ | 型 | 必須 | デフォルト | 説明 |
|---|---|---|---|---|
meeting |
RealtimeKitClient |
✅ | - | RealtimeKit のミーティングインスタンス |
iconPack |
IconPack |
❌ | defaultIconPack |
カスタムアイコンパック |
size |
'lg' | 'md' | 'sm' | 'xl' |
❌ | 'sm' |
サイズのバリアント |
t |
RtkI18n |
❌ | - | i18n の翻訳関数 |
import { RtkRecordingIndicator } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkRecordingIndicator meeting={meeting} />;
}import { RtkRecordingIndicator } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkRecordingIndicator meeting={meeting} size="md" />;
}