具有位置选项的菜单容器组件。
| 属性 | 类型 | 必填 | 默认值 | 描述 |
|---|---|---|---|---|
children |
ReactNode |
✅ | - | 菜单内容 |
size |
'lg' | 'md' | 'sm' | 'xl' |
✅ | - | 尺寸变体 |
placement |
'bottom' | 'bottom-end' | 'bottom-start' | 'left' | 'left-end' | 'left-start' | 'right' | 'right-end' | 'right-start' | 'top' | 'top-end' | 'top-start' |
✅ | - | 菜单相对于触发器的位置 |
import { RtkMenu } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return (
<RtkMenu size="md" placement="bottom">
<Text>Menu content</Text>
</RtkMenu>
);
}import { RtkMenu } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return (
<RtkMenu size="lg" placement="bottom-start">
<Text>Menu content</Text>
</RtkMenu>
);
}