Is it possible to add Compose content to a context...
# compose-desktop
m
Is it possible to add Compose content to a context menu? I've read this: https://github.com/JetBrains/compose-multiplatform/blob/master/tutorials/Context_Menu/README.md But the customization there is just about changing styling of the default menu, or changing what text items display. I want a context menu with my own composable content.
i
It is not possible at the moment. If you need a custom content, you need to write a custom menu using
Popup
or
DropdownMenu
m
Made my own with
Popup
, works exactly how I wanted. Thanks.