Overlay issue

Me again!

I’m using a modal (panel on top of other panels). When it’s on top of page 1, all is cool.

When it’s on top of page 2, which has a mapview, the mapview can be seen underneath.

Here’s a screenshot of what it looks like.

In page 1, you cant see anything underneath and the modal is generally white.

Hi R0b0tn1k,

things inside of a NativeViewHost are rendered on top of everything else, see the docs. If you want a modal on top of that, you either have to put it inside of the same NativeViewHost, or hide the NVH when the modal is visible.

Hope this helps.

Ok, cool, makes sense. Thanks!