HI
I am using react-native-option-menu
If i click Edit then only go to group page.But when the page is load automatically go to the group page.without paramenter is working fine.but i want to pass id to group page.
const Editgroup = (item) => {
navigation.navigate("group ", {
paramKey:item.upload_id,
});
};
<OptionsMenu
button={MoreIcon}
buttonStyle={{ width: 32, height: 20, margin: 7.5, resizeMode: "contain" }}
destructiveIndex={1}
options={["Edit", "Delete"]}
actions={[Editgroup (item)]}
>
</OptionsMenu>