如何计算上下文菜单的位置?

How to calculate position of context menu?

上下文菜单远低于应有的水平。我尝试使用

<Menu renderer={Popover} rendererProps={{ placement: 'top' }} >

但这只是起码的帮助。这是一个截图。感谢您的帮助。

编辑:我现在使用了自定义菜单,如 https://github.com/instea/react-native-popup-menu/blob/master/doc/extensions.md 所示。

这会将选项菜单移动到正确的位置,但会丢失所有样式并且没有动画并且永远不会消失。

const CustomMenu = (props) => {
const { style, children, layouts, ...other } = props;
const position = { top: 0, right: 0 }
return (
    <View name={'newquote2'} {...other} style={[style, position]}>
        {children}
    </View>
);

};

您需要将库菜单组件与您自己的自定义菜单一起使用。例如

<Menu renderer={CustomMenu} >