封装了所有网格处理逻辑并进行渲染的主网格组件。
| 属性 | 类型 | 必填 | 默认值 | 描述 |
|---|---|---|---|---|
aspectRatio |
string |
✅ | - | 每位参与者的宽高比 |
config |
UIConfig |
❌ | createDefaultConfig() |
配置对象 |
gap |
number |
✅ | - | 参与者之间的间距 |
gridSize |
GridSize |
✅ | - | 网格尺寸 |
iconPack |
IconPack |
❌ | defaultIconPack |
图标包 |
layout |
GridLayout |
✅ | - | 网格布局 |
meeting |
Meeting |
✅ | - | 会议对象 |
overrides |
any |
✅ | - | @deprecated |
size |
Size |
✅ | - | 尺寸 |
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"
/>
);
}