Skip to content

非公式本サイトは非公式の日本語ドキュメントであり、Cloudflare 公式サイトではありません。最新情報はdevelopers.cloudflare.comをご確認ください。

RtkRecordingIndicator

最終更新 Markdown で表示Agent セットアップ

ミーティングを録画中のとき、点滅する録画インジケーターを表示します。

プロパティ

プロパティ 必須 デフォルト 説明
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" />;
}

役に立ちましたか?