How to place button controls over a mapview

Guys how do I go about placing button controls over a mapview. I notice that when I place controls over a mapview, I either can’t interact with the map or the map overlays these controls, making them hidden behind it. Please is there any workaround for this?

Visuals wrapped in a NativeViewHost are always on top of those rendered with OpenGL. That’s a known limitation.

To have things on top of other things, you need to put them all inside of the same NativeViewHost. If necessary, you can also wrap some UX elements in a GraphicsView to have them rendered with OpenGL. NativeViewHost and GraphicsView can be mixed and matched as necessary.

Hope this helps!