What is an ideal way to implement multi-level popups with react-native-popup-menu?
I want to be able to click an icon on the screen and have a first level pop-up menu appear. Each item on that first level popup menu would potentially open a second level popup menu on top of the first (with similar <MenuTrigger>
behavior).
My initial thought was to somehow call this.---.menuActions.open()
from a lambda in the onSelect
property in <MenuOption>
, but this doesn't appear to be documented in the API so I wanted to avoid hacking something with that solution if its considered a private API.