显示参会者的头像图片或基于姓名首字母的备用头像。
| 属性 | 类型 | 是否必填 | 默认值 | 描述 |
|---|---|---|---|---|
participant |
RTKParticipant | RTKSelf |
✅ | - | 要显示其头像的参会者 |
iconPack |
IconPack |
❌ | defaultIconPack |
自定义图标包 |
size |
'lg' | 'md' | 'sm' | 'xl' |
❌ | 'sm' |
头像的尺寸 |
variant |
'circular' | 'hexagon' | 'square' |
❌ | 'circular' |
头像的形状变体 |
import { RtkAvatar } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkAvatar participant={participant} />;
}import { RtkAvatar } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkAvatar participant={participant} size="lg" variant="circular" />;
}