グリッドの処理ロジックをすべて抽象化し、描画するメインのグリッドコンポーネントです。
| プロパティ | 型 | 必須 | デフォルト | 説明 |
|---|---|---|---|---|
aspectRatio |
string |
✅ | - | 各参加者のアスペクト比 |
config |
UIConfig |
❌ | createDefaultConfig() |
設定オブジェクト |
gap |
number |
✅ | - | 参加者同士の間隔 |
gridSize |
GridSize |
✅ | - | グリッドサイズ |
iconPack |
IconPack |
❌ | defaultIconPack |
アイコンパック |
layout |
GridLayout |
✅ | - | グリッドレイアウト |
meeting |
Meeting |
✅ | - | Meeting オブジェクト |
overrides |
any |
✅ | - | @deprecated |
size |
Size |
✅ | - | サイズ |
states |
States |
✅ | - | States オブジェクト |
t |
RtkI18n |
❌ | useLanguage() |
言語 |
import { RtkGrid } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkGrid />;
}import { RtkGrid } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkGrid
aspectRatio="example"
gap={42}
gridSize="md"
/>
);
}