Skip to content

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

RtkWaitingScreen

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

参加待ちのあいだに表示する画面です(待機リスト、キック、切断の各状態)。

プロパティ

プロパティ 必須 デフォルト 説明
config UIConfig - UI 設定オブジェクト
t RtkI18n - i18n 翻訳関数

使用例

基本的な使い方

import { RtkWaitingScreen } from "@cloudflare/realtimekit-react-native-ui";

function MyComponent() {
	return <RtkWaitingScreen />;
}

プロパティを指定する場合

import { RtkWaitingScreen } from "@cloudflare/realtimekit-react-native-ui";

function MyComponent() {
	return <RtkWaitingScreen config={customConfig} />;
}

役に立ちましたか?