ミーティングが終了したときに表示する画面です。
| プロパティ | 型 | 必須 | デフォルト | 説明 |
|---|---|---|---|---|
meeting |
RealtimeKitClient |
❌ | - | RealtimeKit のミーティングインスタンス |
config |
UIConfig |
❌ | defaultConfig |
UI 設定オブジェクト |
size |
'lg' | 'md' | 'sm' | 'xl' |
❌ | - | サイズバリアント |
states |
States |
❌ | - | UI の States オブジェクト |
t |
RtkI18n |
❌ | - | i18n 翻訳関数 |
import { RtkEndedScreen } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkEndedScreen />;
}import { RtkEndedScreen } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkEndedScreen meeting={meeting} config={customConfig} size="md" />;
}