Choose a Popover mode
masterThe mode prop determines how the popover is rendered in the view hierarchy:
rn-modal(Default): Uses a nativeReact Native Modal. It is guaranteed to appear on top of all other views. Limitation: Only one Modal can be shown at a time; not suitable for nested popovers.js-modal: Renders the popover into the React component tree. Use this for nested popovers or when the anchor is already inside a native modal. Tapping outside triggersonRequestClose.tooltip: Renders into the component tree without a background fade. Taps outside are not blocked, andonRequestCloseis never called. The user must dismiss it manually.
Important for js-modal and tooltip: Because these render in the component tree, the Popover component must be placed high up in the hierarchy (ideally near the root) to ensure it has enough space to render. If the parent view is the same size as the anchor, the popover may be clipped.